diesel working
This commit is contained in:
15
src/schema.rs
Normal file
15
src/schema.rs
Normal file
@ -0,0 +1,15 @@
|
||||
// @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,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user