21 lines
238 B
Rust
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,
|
|
}
|
|
}
|