new_users fields are more explicit
also easier to work with given current goals
This commit is contained in:
@@ -6,6 +6,13 @@ table! {
|
||||
}
|
||||
}
|
||||
|
||||
table! {
|
||||
new_users (token) {
|
||||
token -> Varchar,
|
||||
invite_id -> Unsigned<Bigint>,
|
||||
}
|
||||
}
|
||||
|
||||
table! {
|
||||
users (id) {
|
||||
id -> Bigint,
|
||||
@@ -18,5 +25,6 @@ table! {
|
||||
|
||||
allow_tables_to_appear_in_same_query!(
|
||||
invites,
|
||||
new_users,
|
||||
users,
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user