2025-03-22 22:17:47 -04:00
|
|
|
pub const CREATE_TABLE_USERS: &str = include_str!("./sql/create_users.sql");
|
2025-03-23 18:03:11 -04:00
|
|
|
pub const CREATE_TABLE_PAGES: &str = include_str!("./sql/create_pages.sql");
|
2025-03-24 20:26:15 -04:00
|
|
|
pub const CREATE_TABLE_ENTRIES: &str = include_str!("./sql/create_entries.sql");
|
|
|
|
pub const CREATE_TABLE_MEMBERSHIPS: &str = include_str!("./sql/create_memberships.sql");
|
2025-03-24 22:42:33 -04:00
|
|
|
pub const CREATE_TABLE_REACTIONS: &str = include_str!("./sql/create_reactions.sql");
|