channels alongside users table

This commit is contained in:
shockrah 2019-12-08 23:28:20 -08:00
parent e588d81383
commit a6a597cc0c

View File

@ -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,
);