19 lines
212 B
Rust
19 lines
212 B
Rust
//!
|
|
//!
|
|
|
|
table! {
|
|
///
|
|
member_sites(id) {
|
|
///
|
|
id -> Uuid,
|
|
///
|
|
url -> Text,
|
|
///
|
|
created_at -> BigInt,
|
|
///
|
|
updated_at -> BigInt,
|
|
///
|
|
deleted_at -> Nullable<BigInt>,
|
|
}
|
|
}
|