Files
LibreTunes-DX/src/schema.rs
2026-06-26 18:08:03 -04:00

11 lines
206 B
Rust

// @generated automatically by Diesel CLI.
diesel::table! {
users (id) {
id -> Int4,
username -> Varchar,
hashed_password -> Varchar,
created_at -> Timestamptz,
}
}