channels alongside users table
This commit is contained in:
@@ -1,3 +1,11 @@
|
||||
table! {
|
||||
channels (id) {
|
||||
id -> Integer,
|
||||
name -> Varchar,
|
||||
ctype -> Integer,
|
||||
}
|
||||
}
|
||||
|
||||
table! {
|
||||
users (id) {
|
||||
id -> Integer,
|
||||
@@ -6,3 +14,8 @@ table! {
|
||||
native -> Nullable<Bool>,
|
||||
}
|
||||
}
|
||||
|
||||
allow_tables_to_appear_in_same_query!(
|
||||
channels,
|
||||
users,
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user