9 lines
169 B
Rust
9 lines
169 B
Rust
use diesel::prelude::*;
|
|
|
|
#[derive(Queryable)]
|
|
pub struct Image {
|
|
pub id: i32,
|
|
pub title: String,
|
|
#[diesel(column_name = "filePath")]
|
|
pub path: String,
|
|
}
|