16 lines
337 B
Rust
16 lines
337 B
Rust
// @generated automatically by Diesel CLI.
|
|
|
|
diesel::table! {
|
|
file (id) {
|
|
id -> Int8,
|
|
created_at -> Timestamp,
|
|
downloads -> Int8,
|
|
#[max_length = 255]
|
|
filename -> Varchar,
|
|
file_size -> Int8,
|
|
#[max_length = 30]
|
|
stored_filename -> Varchar,
|
|
deleted -> Bool,
|
|
}
|
|
}
|