fix: run CREATE_TABLE_ENTRIES and CREATE_TABLE_MEMBERSHIPS

This commit is contained in:
trisua 2025-03-24 20:26:15 -04:00
parent 1a6b48078a
commit c46eb3b807
2 changed files with 4 additions and 0 deletions

View file

@ -15,6 +15,8 @@ impl DataManager {
execute!(&conn, common::CREATE_TABLE_USERS, []).unwrap();
execute!(&conn, common::CREATE_TABLE_PAGES, []).unwrap();
execute!(&conn, common::CREATE_TABLE_ENTRIES, []).unwrap();
execute!(&conn, common::CREATE_TABLE_MEMBERSHIPS, []).unwrap();
Ok(())
}