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! {
|
table! {
|
||||||
users (id) {
|
users (id) {
|
||||||
id -> Integer,
|
id -> Integer,
|
||||||
@ -17,5 +25,6 @@ table! {
|
|||||||
|
|
||||||
allow_tables_to_appear_in_same_query!(
|
allow_tables_to_appear_in_same_query!(
|
||||||
channels,
|
channels,
|
||||||
|
invites,
|
||||||
users,
|
users,
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user