generated from t/malachite
add: chat invites table
This commit is contained in:
parent
01fa758e63
commit
87562d3b5d
6 changed files with 140 additions and 2 deletions
|
@ -1,3 +1,4 @@
|
|||
mod chat_invites;
|
||||
mod chats;
|
||||
mod messages;
|
||||
mod notifications;
|
||||
|
@ -52,6 +53,7 @@ impl DataManager {
|
|||
|
||||
execute!(&conn, sql::CREATE_TABLE_CHATS).unwrap();
|
||||
execute!(&conn, sql::CREATE_TABLE_MESSAGES).unwrap();
|
||||
execute!(&conn, sql::CREATE_TABLE_CHAT_INVITES).unwrap();
|
||||
|
||||
for x in sql::VERSION_MIGRATIONS.split(";") {
|
||||
execute!(&conn, x).unwrap();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue