23 lines
1.9 KiB
Rust
23 lines
1.9 KiB
Rust
pub const CREATE_TABLE_USERS: &str = include_str!("./sql/create_users.sql");
|
|
pub const CREATE_TABLE_COMMUNITIES: &str = include_str!("./sql/create_communities.sql");
|
|
pub const CREATE_TABLE_POSTS: &str = include_str!("./sql/create_posts.sql");
|
|
pub const CREATE_TABLE_MEMBERSHIPS: &str = include_str!("./sql/create_memberships.sql");
|
|
pub const CREATE_TABLE_REACTIONS: &str = include_str!("./sql/create_reactions.sql");
|
|
pub const CREATE_TABLE_NOTIFICATIONS: &str = include_str!("./sql/create_notifications.sql");
|
|
pub const CREATE_TABLE_USERFOLLOWS: &str = include_str!("./sql/create_userfollows.sql");
|
|
pub const CREATE_TABLE_USERBLOCKS: &str = include_str!("./sql/create_userblocks.sql");
|
|
pub const CREATE_TABLE_IPBANS: &str = include_str!("./sql/create_ipbans.sql");
|
|
pub const CREATE_TABLE_AUDIT_LOG: &str = include_str!("./sql/create_audit_log.sql");
|
|
pub const CREATE_TABLE_REPORTS: &str = include_str!("./sql/create_reports.sql");
|
|
pub const CREATE_TABLE_USER_WARNINGS: &str = include_str!("./sql/create_user_warnings.sql");
|
|
pub const CREATE_TABLE_REQUESTS: &str = include_str!("./sql/create_requests.sql");
|
|
pub const CREATE_TABLE_QUESTIONS: &str = include_str!("./sql/create_questions.sql");
|
|
pub const CREATE_TABLE_IPBLOCKS: &str = include_str!("./sql/create_ipblocks.sql");
|
|
pub const CREATE_TABLE_CHANNELS: &str = include_str!("./sql/create_channels.sql");
|
|
pub const CREATE_TABLE_MESSAGES: &str = include_str!("./sql/create_messages.sql");
|
|
pub const CREATE_TABLE_UPLOADS: &str = include_str!("./sql/create_uploads.sql");
|
|
pub const CREATE_TABLE_EMOJIS: &str = include_str!("./sql/create_emojis.sql");
|
|
pub const CREATE_TABLE_STACKS: &str = include_str!("./sql/create_stacks.sql");
|
|
pub const CREATE_TABLE_DRAFTS: &str = include_str!("./sql/create_drafts.sql");
|
|
pub const CREATE_TABLE_POLLS: &str = include_str!("./sql/create_polls.sql");
|
|
pub const CREATE_TABLE_POLLVOTES: &str = include_str!("./sql/create_pollvotes.sql");
|