2022-08-14 08:39:17 +00:00

21 lines
238 B
Rust

//!
//!
table! {
///
member_classes(id) {
///
id -> Uuid,
///
parent_id -> Nullable<Uuid>,
///
name -> Text,
///
show -> Bool,
///
created_at -> BigInt,
///
updated_at -> BigInt,
}
}