invites added to schemas rust code
This commit is contained in:
parent
b0ab68c134
commit
ecc08cc3f1
@ -6,6 +6,14 @@ table! {
|
||||
}
|
||||
}
|
||||
|
||||
table! {
|
||||
invites (id) {
|
||||
id -> Integer,
|
||||
uses -> Nullable<Integer>,
|
||||
expire -> Nullable<Integer>,
|
||||
}
|
||||
}
|
||||
|
||||
table! {
|
||||
users (id) {
|
||||
id -> Integer,
|
||||
@ -17,5 +25,6 @@ table! {
|
||||
|
||||
allow_tables_to_appear_in_same_query!(
|
||||
channels,
|
||||
invites,
|
||||
users,
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user