Files
httpserver/src/schema.rs
2026-04-12 19:39:57 +02:00

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,
}
}