diff --git a/bot/cpl-workspace.json b/bot/cpl-workspace.json index d08ceb87..060dd42b 100644 --- a/bot/cpl-workspace.json +++ b/bot/cpl-workspace.json @@ -21,7 +21,8 @@ "checks": "tools/checks/checks.json", "get-version": "tools/get_version/get-version.json", "post-build": "tools/post_build/post-build.json", - "set-version": "tools/set_version/set-version.json" + "set-version": "tools/set_version/set-version.json", + "migration-to-sql": "tools/migration_to_sql/tools/migration-to-sql.json" }, "Scripts": { "format": "black ./", diff --git a/bot/src/bot_core/service/data_integrity_service.py b/bot/src/bot_core/service/data_integrity_service.py index 83f53551..fb6797f3 100644 --- a/bot/src/bot_core/service/data_integrity_service.py +++ b/bot/src/bot_core/service/data_integrity_service.py @@ -92,7 +92,7 @@ class DataIntegrityService: except Exception as e: self._logger.error(__name__, f"Cannot get user", e) - def _check_servers(self): + def check_servers(self): self._logger.debug(__name__, f"Start checking Servers table") for g in self._bot.guilds: g: discord.Guild = g @@ -411,7 +411,7 @@ class DataIntegrityService: await self._check_default_role() self._check_known_users() - self._check_servers() + self.check_servers() self._check_clients() self._check_users() self._check_user_joins() diff --git a/bot/src/bot_data/migration/__init__.py b/bot/src/bot_data/migration/__init__.py deleted file mode 100644 index c8b32e03..00000000 --- a/bot/src/bot_data/migration/__init__.py +++ /dev/null @@ -1,26 +0,0 @@ -# -*- coding: utf-8 -*- - -""" -bot sh-edraft.de Discord bot -~~~~~~~~~~~~~~~~~~~ - -Discord bot for customers of sh-edraft.de - -:copyright: (c) 2022 - 2023 sh-edraft.de -:license: MIT, see LICENSE for more details. - -""" - -__title__ = "bot_data.migration" -__author__ = "Sven Heidemann" -__license__ = "MIT" -__copyright__ = "Copyright (c) 2022 - 2023 sh-edraft.de" -__version__ = "1.2.1" - -from collections import namedtuple - - -# imports - -VersionInfo = namedtuple("VersionInfo", "major minor micro") -version_info = VersionInfo(major="1", minor="2", micro="1") diff --git a/bot/src/bot_data/migration/achievements_migration.py b/bot/src/bot_data/migration/achievements_migration.py deleted file mode 100644 index f3a454d3..00000000 --- a/bot/src/bot_data/migration/achievements_migration.py +++ /dev/null @@ -1,127 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class AchievementsMigration(MigrationABC): - name = "1.1.0_AchievementsMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `Achievements` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `Name` VARCHAR(255) NOT NULL, - `Description` VARCHAR(255) NOT NULL, - `Attribute` VARCHAR(255) NOT NULL, - `Operator` VARCHAR(255) NOT NULL, - `Value` VARCHAR(255) NOT NULL, - `ServerId` BIGINT, - `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), - `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), - PRIMARY KEY(`Id`), - FOREIGN KEY (`ServerId`) REFERENCES `Servers`(`ServerId`) - ); - """ - ) - ) - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `AchievementsHistory` - ( - `Id` BIGINT(20) NOT NULL, - `Name` VARCHAR(255) NOT NULL, - `Description` VARCHAR(255) NOT NULL, - `Attribute` VARCHAR(255) NOT NULL, - `Operator` VARCHAR(255) NOT NULL, - `Value` VARCHAR(255) NOT NULL, - `ServerId` BIGINT, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL - ); - """ - ) - ) - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `UserGotAchievements` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `UserId` BIGINT, - `AchievementId` BIGINT, - `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), - `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), - PRIMARY KEY(`Id`), - FOREIGN KEY (`UserId`) REFERENCES `Users`(`UserId`), - FOREIGN KEY (`AchievementId`) REFERENCES `Achievements`(`Id`) - ); - """ - ) - ) - - # A join table history between users and achievements is not necessary. - - self._cursor.execute(str(f"""ALTER TABLE Users ADD MessageCount BIGINT NOT NULL DEFAULT 0 AFTER XP;""")) - self._cursor.execute(str(f"""ALTER TABLE Users ADD ReactionCount BIGINT NOT NULL DEFAULT 0 AFTER XP;""")) - self._cursor.execute(str(f"""ALTER TABLE UsersHistory ADD MessageCount BIGINT NOT NULL DEFAULT 0 AFTER XP;""")) - self._cursor.execute(str(f"""ALTER TABLE UsersHistory ADD ReactionCount BIGINT NOT NULL DEFAULT 0 AFTER XP;""")) - - self._cursor.execute(str(f"""DROP TRIGGER IF EXISTS `TR_AchievementsUpdate`;""")) - self._cursor.execute( - str( - f""" - CREATE TRIGGER `TR_AchievementsUpdate` - AFTER UPDATE - ON `Achievements` - FOR EACH ROW - BEGIN - INSERT INTO `AchievementsHistory` ( - `Id`, `Name`, `Description`, `Attribute`, `Operator`, `Value`, `ServerId`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.Name, OLD.Description, OLD.Attribute, OLD.Operator, OLD.Value, OLD.ServerId, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); - END; - """ - ) - ) - - self._cursor.execute(str(f"""DROP TRIGGER IF EXISTS `TR_AchievementsDelete`;""")) - - self._cursor.execute( - str( - f""" - CREATE TRIGGER `TR_AchievementsDelete` - AFTER DELETE - ON `Achievements` - FOR EACH ROW - BEGIN - INSERT INTO `AchievementsHistory` ( - `Id`, `Name`, `Description`, `Attribute`, `Operator`, `Value`, `ServerId`, `Deleted`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.Name, OLD.Description, OLD.Attribute, OLD.Operator, OLD.Value, OLD.ServerId, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); - END; - """ - ) - ) - - def downgrade(self): - self._cursor.execute("DROP TABLE `Achievements`;") - - self._cursor.execute(str(f"""ALTER TABLE Users DROP COLUMN MessageCount;""")) - self._cursor.execute(str(f"""ALTER TABLE Users DROP COLUMN ReactionCount;""")) diff --git a/bot/src/bot_data/migration/api_key_migration.py b/bot/src/bot_data/migration/api_key_migration.py deleted file mode 100644 index 0712974b..00000000 --- a/bot/src/bot_data/migration/api_key_migration.py +++ /dev/null @@ -1,38 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class ApiKeyMigration(MigrationABC): - name = "1.0.0_ApiKeyMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `ApiKeys` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `Identifier` VARCHAR(255) NOT NULL, - `Key` VARCHAR(255) NOT NULL, - `CreatorId` BIGINT NULL, - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - PRIMARY KEY(`Id`), - FOREIGN KEY (`CreatorId`) REFERENCES `Users`(`UserId`), - CONSTRAINT UC_Identifier_Key UNIQUE (`Identifier`,`Key`), - CONSTRAINT UC_Key UNIQUE (`Key`) - ); - """ - ) - ) - - def downgrade(self): - self._cursor.execute("DROP TABLE `ApiKeys`;") diff --git a/bot/src/bot_data/migration/api_migration.py b/bot/src/bot_data/migration/api_migration.py deleted file mode 100644 index e67eb53f..00000000 --- a/bot/src/bot_data/migration/api_migration.py +++ /dev/null @@ -1,61 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class ApiMigration(MigrationABC): - name = "0.3_ApiMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `AuthUsers` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `FirstName` VARCHAR(255), - `LastName` VARCHAR(255), - `EMail` VARCHAR(255), - `Password` VARCHAR(255), - `PasswordSalt` VARCHAR(255), - `RefreshToken` VARCHAR(255), - `ConfirmationId` VARCHAR(255) DEFAULT NULL, - `ForgotPasswordId` VARCHAR(255) DEFAULT NULL, - `OAuthId` VARCHAR(255) DEFAULT NULL, - `RefreshTokenExpiryTime` DATETIME(6) NOT NULL, - `AuthRole` INT NOT NULL DEFAULT 0, - `CreatedAt` DATETIME(6) NOT NULL, - `LastModifiedAt` DATETIME(6) NOT NULL, - PRIMARY KEY(`Id`) - ); - """ - ) - ) - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `AuthUserUsersRelations`( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `AuthUserId` BIGINT DEFAULT NULL, - `UserId` BIGINT DEFAULT NULL, - `CreatedAt` DATETIME(6) NOT NULL, - `LastModifiedAt` DATETIME(6) NOT NULL, - PRIMARY KEY(`Id`), - FOREIGN KEY (`AuthUserId`) REFERENCES `AuthUsers`(`Id`), - FOREIGN KEY (`UserId`) REFERENCES `Users`(`UserId`) - ); - """ - ) - ) - - def downgrade(self): - self._cursor.execute("DROP TABLE `AuthUsers`;") - self._cursor.execute("DROP TABLE `AuthUserUsersRelations`;") diff --git a/bot/src/bot_data/migration/auto_role_fix1_migration.py b/bot/src/bot_data/migration/auto_role_fix1_migration.py deleted file mode 100644 index 70a8e30e..00000000 --- a/bot/src/bot_data/migration/auto_role_fix1_migration.py +++ /dev/null @@ -1,33 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class AutoRoleFix1Migration(MigrationABC): - name = "0.3.0_AutoRoleFixMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - ALTER TABLE AutoRoles ADD DiscordChannelId BIGINT NOT NULL AFTER ServerId; - """ - ) - ) - - def downgrade(self): - self._cursor.execute( - str( - f""" - ALTER TABLE AutoRoles DROP COLUMN DiscordChannelId; - """ - ) - ) diff --git a/bot/src/bot_data/migration/auto_role_migration.py b/bot/src/bot_data/migration/auto_role_migration.py deleted file mode 100644 index 4b8e0090..00000000 --- a/bot/src/bot_data/migration/auto_role_migration.py +++ /dev/null @@ -1,53 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class AutoRoleMigration(MigrationABC): - name = "0.2.1_AutoRoleMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `AutoRoles` ( - `AutoRoleId` BIGINT NOT NULL AUTO_INCREMENT, - `ServerId` BIGINT, - `DiscordMessageId` BIGINT NOT NULL, - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - PRIMARY KEY(`AutoRoleId`), - FOREIGN KEY (`ServerId`) REFERENCES `Servers`(`ServerId`) - ); - """ - ) - ) - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `AutoRoleRules` ( - `AutoRoleRuleId` BIGINT NOT NULL AUTO_INCREMENT, - `AutoRoleId` BIGINT, - `DiscordEmojiName` VARCHAR(64), - `DiscordRoleId` BIGINT NOT NULL, - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - PRIMARY KEY(`AutoRoleRuleId`), - FOREIGN KEY (`AutoRoleId`) REFERENCES `AutoRoles`(`AutoRoleId`) - ); - """ - ) - ) - - def downgrade(self): - self._cursor.execute("DROP TABLE `AutoRole`;") - self._cursor.execute("DROP TABLE `AutoRoleRules`;") diff --git a/bot/src/bot_data/migration/birthday_migration.py b/bot/src/bot_data/migration/birthday_migration.py deleted file mode 100644 index 607de4d3..00000000 --- a/bot/src/bot_data/migration/birthday_migration.py +++ /dev/null @@ -1,84 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class BirthdayMigration(MigrationABC): - name = "1.2.0_BirthdayMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - ALTER TABLE Users - ADD Birthday DATE NULL AFTER MessageCount; - """ - ) - ) - - self._cursor.execute( - str( - f""" - ALTER TABLE UsersHistory - ADD Birthday DATE NULL AFTER MessageCount; - """ - ) - ) - self._exec(__file__, "users.sql") - - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_Server - ADD XpForBirthday BIGINT(20) NOT NULL DEFAULT 0 AFTER XpPerAchievement; - """ - ) - ) - - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_ServerHistory - ADD XpForBirthday BIGINT(20) NOT NULL DEFAULT 0 AFTER XpPerAchievement; - """ - ) - ) - self._exec(__file__, "config/server.sql") - - def downgrade(self): - self._cursor.execute( - str( - f""" - ALTER TABLE Users DROP COLUMN Birthday; - """ - ) - ) - self._cursor.execute( - str( - f""" - ALTER TABLE UsersHistory DROP COLUMN Birthday; - """ - ) - ) - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_Server DROP COLUMN XpForBirthday; - """ - ) - ) - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_ServerHistory DROP COLUMN XpForBirthday; - """ - ) - ) diff --git a/bot/src/bot_data/migration/config_feature_flags_migration.py b/bot/src/bot_data/migration/config_feature_flags_migration.py deleted file mode 100644 index f9046565..00000000 --- a/bot/src/bot_data/migration/config_feature_flags_migration.py +++ /dev/null @@ -1,29 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class ConfigFeatureFlagsMigration(MigrationABC): - name = "1.1.0_ConfigFeatureFlagsMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str("""ALTER TABLE CFG_Technician ADD FeatureFlags JSON NULL DEFAULT ('{}') AFTER CacheMaxMessages;""") - ) - - self._cursor.execute( - str("""ALTER TABLE CFG_Server ADD FeatureFlags JSON NULL DEFAULT ('{}') AFTER LoginMessageChannelId;""") - ) - - def downgrade(self): - self._logger.debug(__name__, "Running downgrade") - self._cursor.execute("ALTER TABLE CFG_Technician DROP COLUMN FeatureFlags;") - self._cursor.execute("ALTER TABLE CFG_Server DROP COLUMN FeatureFlags;") diff --git a/bot/src/bot_data/migration/config_migration.py b/bot/src/bot_data/migration/config_migration.py deleted file mode 100644 index d65ac06d..00000000 --- a/bot/src/bot_data/migration/config_migration.py +++ /dev/null @@ -1,145 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class ConfigMigration(MigrationABC): - name = "1.1.0_ConfigMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - self._server_upgrade() - self._technician_upgrade() - - self._exec(__file__, "config/server.sql") - self._exec(__file__, "config/server_afk_channels.sql") - self._exec(__file__, "config/server_team_roles.sql") - self._exec(__file__, "config/technician.sql") - self._exec(__file__, "config/technician_ids.sql") - self._exec(__file__, "config/technician_ping_urls.sql") - - def _server_upgrade(self): - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `CFG_Server` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `MessageDeleteTimer` BIGINT NOT NULL DEFAULT 6, - `NotificationChatId` BIGINT NOT NULL, - `MaxVoiceStateHours` BIGINT NOT NULL DEFAULT 6, - `XpPerMessage` BIGINT NOT NULL DEFAULT 1, - `XpPerReaction` BIGINT NOT NULL DEFAULT 1, - `MaxMessageXpPerHour` BIGINT NOT NULL DEFAULT 20, - `XpPerOntimeHour` BIGINT NOT NULL DEFAULT 10, - `XpPerEventParticipation` BIGINT NOT NULL DEFAULT 10, - `XpPerAchievement` BIGINT NOT NULL DEFAULT 10, - `AFKCommandChannelId` BIGINT NOT NULL, - `HelpVoiceChannelId` BIGINT NOT NULL, - `TeamChannelId` BIGINT NOT NULL, - `LoginMessageChannelId` BIGINT NOT NULL, - `ServerId` BIGINT NOT NULL, - `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), - `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), - PRIMARY KEY(`Id`), - FOREIGN KEY (`ServerId`) REFERENCES `Servers`(`ServerId`) - ); - """ - ) - ) - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `CFG_ServerAFKChannelIds` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `ChannelId` BIGINT NOT NULL, - `ServerId` BIGINT NOT NULL, - `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), - `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), - PRIMARY KEY(`Id`), - FOREIGN KEY (`ServerId`) REFERENCES `Servers`(`ServerId`) - ); - """ - ) - ) - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `CFG_ServerTeamRoleIds` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `RoleId` BIGINT NOT NULL, - `TeamMemberType` ENUM('Moderator', 'Admin') NOT NULL, - `ServerId` BIGINT NOT NULL, - `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), - `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), - PRIMARY KEY(`Id`), - FOREIGN KEY (`ServerId`) REFERENCES `Servers`(`ServerId`) - ); - """ - ) - ) - - def _technician_upgrade(self): - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `CFG_Technician` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `HelpCommandReferenceUrl` VARCHAR(255) NOT NULL, - `WaitForRestart` BIGINT NOT NULL DEFAULT 8, - `WaitForShutdown` BIGINT NOT NULL DEFAULT 8, - `CacheMaxMessages` BIGINT NOT NULL DEFAULT 1000000, - `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), - `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), - PRIMARY KEY(`Id`) - ); - """ - ) - ) - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `CFG_TechnicianPingUrls` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `URL` VARCHAR(255) NOT NULL, - `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), - `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), - PRIMARY KEY(`Id`) - ); - """ - ) - ) - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `CFG_TechnicianIds` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `TechnicianId` BIGINT NOT NULL, - `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), - `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), - PRIMARY KEY(`Id`) - ); - """ - ) - ) - - def downgrade(self): - self._logger.debug(__name__, "Running downgrade") - self._server_downgrade() - self._technician_downgrade() - - def _server_downgrade(self): - self._cursor.execute("DROP TABLE `CFG_Server`;") - - def _technician_downgrade(self): - self._cursor.execute("DROP TABLE `CFG_Technician`;") - self._cursor.execute("DROP TABLE `CFG_TechnicianPingUrls`;") - self._cursor.execute("DROP TABLE `CFG_TechnicianIds`;") diff --git a/bot/src/bot_data/migration/db_history_migration.py b/bot/src/bot_data/migration/db_history_migration.py deleted file mode 100644 index 5452d9e5..00000000 --- a/bot/src/bot_data/migration/db_history_migration.py +++ /dev/null @@ -1,56 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class DBHistoryMigration(MigrationABC): - name = "1.0.0_DBHistoryMigration" - prio = 1 - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._exec(__file__, "api_keys.sql") - self._exec(__file__, "auth_users.sql") - self._exec(__file__, "auth_user_users_relation.sql") - self._exec(__file__, "auto_role_rules.sql") - self._exec(__file__, "auto_roles.sql") - self._exec(__file__, "clients.sql") - self._exec(__file__, "game_servers.sql") - self._exec(__file__, "known_users.sql") - self._exec(__file__, "levels.sql") - self._exec(__file__, "servers.sql") - self._exec(__file__, "user_game_idents.sql") - self._exec(__file__, "user_joined_game_servers.sql") - self._exec(__file__, "user_joined_servers.sql") - self._exec(__file__, "user_joined_voice_channel.sql") - self._exec(__file__, "user_message_count_per_hour.sql") - self._exec(__file__, "users.sql") - self._exec(__file__, "user_warnings.sql") - - self._logger.debug(__name__, "Finished history upgrade") - - def downgrade(self): - self._cursor.execute("DROP TABLE `ApiKeysHistory`;") - self._cursor.execute("DROP TABLE `AuthUsersHistory`;") - self._cursor.execute("DROP TABLE `AuthUserUsersRelationsHistory`;") - self._cursor.execute("DROP TABLE `AutoRoleRulesHistory`;") - self._cursor.execute("DROP TABLE `AutoRolesHistory`;") - self._cursor.execute("DROP TABLE `ClientsHistory`;") - self._cursor.execute("DROP TABLE `GameServersHistory`;") - self._cursor.execute("DROP TABLE `KnownUsersHistory`;") - self._cursor.execute("DROP TABLE `LevelsHistory`;") - self._cursor.execute("DROP TABLE `ServersHistory`;") - self._cursor.execute("DROP TABLE `UserGameIdentsHistory`;") - self._cursor.execute("DROP TABLE `UserJoinedGameServerHistory`;") - self._cursor.execute("DROP TABLE `UserJoinedServersHistory`;") - self._cursor.execute("DROP TABLE `UserJoinedVoiceChannelHistory`;") - self._cursor.execute("DROP TABLE `UserMessageCountPerHourHistory`;") - self._cursor.execute("DROP TABLE `UsersHistory`;") - self._cursor.execute("DROP TABLE `UserWarningsHistory`;") diff --git a/bot/src/bot_data/migration/db_history_scripts/api_keys.sql b/bot/src/bot_data/migration/db_history_scripts/api_keys.sql deleted file mode 100644 index 10285da4..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/api_keys.sql +++ /dev/null @@ -1,46 +0,0 @@ -ALTER TABLE `ApiKeys` - CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6); - -ALTER TABLE `ApiKeys` - CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6); - -CREATE TABLE IF NOT EXISTS `ApiKeysHistory` -( - `Id` BIGINT(20) NOT NULL, - `Identifier` VARCHAR(255) NOT NULL, - `Key` VARCHAR(255) NOT NULL, - `CreatorId` BIGINT(20) DEFAULT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_ApiKeysUpdate`; - -CREATE TRIGGER `TR_ApiKeysUpdate` - AFTER UPDATE - ON `ApiKeys` - FOR EACH ROW -BEGIN - INSERT INTO `ApiKeysHistory` ( - `Id`, `Identifier`, `Key`, `CreatorId`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.Identifier, OLD.Key, OLD.CreatorId, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_ApiKeysDelete`; - -CREATE TRIGGER `TR_ApiKeysDelete` - AFTER DELETE - ON `ApiKeys` - FOR EACH ROW -BEGIN - INSERT INTO `ApiKeysHistory` ( - `Id`, `Identifier`, `Key`, `CreatorId`, `Deleted`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.Identifier, OLD.Key, OLD.CreatorId, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/auth_user_users_relation.sql b/bot/src/bot_data/migration/db_history_scripts/auth_user_users_relation.sql deleted file mode 100644 index 2ce0d762..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/auth_user_users_relation.sql +++ /dev/null @@ -1,46 +0,0 @@ -ALTER TABLE `AuthUserUsersRelations` - CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6); - -ALTER TABLE `AuthUserUsersRelations` - CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6); - - -CREATE TABLE IF NOT EXISTS `AuthUserUsersRelationsHistory` -( - `Id` BIGINT(20) NOT NULL, - `AuthUserId` BIGINT(20) DEFAULT NULL, - `UserId` BIGINT(20) DEFAULT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_AuthUserUsersRelationsUpdate`; - -CREATE TRIGGER `TR_AuthUserUsersRelationsUpdate` - AFTER UPDATE - ON `AuthUserUsersRelations` - FOR EACH ROW -BEGIN - INSERT INTO `AuthUserUsersRelationsHistory` ( - `Id`, `AuthUserId`, `UserId`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.AuthUserId, OLD.UserId, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_AuthUserUsersRelationsDelete`; - -CREATE TRIGGER `TR_AuthUserUsersRelationsDelete` - AFTER DELETE - ON `AuthUserUsersRelations` - FOR EACH ROW -BEGIN - INSERT INTO `AuthUserUsersRelationsHistory` ( - `Id`, `AuthUserId`, `UserId`, `Deleted`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.AuthUserId, OLD.UserId, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/auth_users.sql b/bot/src/bot_data/migration/db_history_scripts/auth_users.sql deleted file mode 100644 index ab22cc65..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/auth_users.sql +++ /dev/null @@ -1,62 +0,0 @@ -ALTER TABLE `AuthUsers` - CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6); - -ALTER TABLE `AuthUsers` - CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6); - -CREATE TABLE IF NOT EXISTS `AuthUsersHistory` -( - `Id` BIGINT(20) NOT NULL, - `FirstName` VARCHAR(255) DEFAULT NULL, - `LastName` VARCHAR(255) DEFAULT NULL, - `EMail` VARCHAR(255) DEFAULT NULL, - `Password` VARCHAR(255) DEFAULT NULL, - `PasswordSalt` VARCHAR(255) DEFAULT NULL, - `RefreshToken` VARCHAR(255) DEFAULT NULL, - `ConfirmationId` VARCHAR(255) DEFAULT NULL, - `ForgotPasswordId` VARCHAR(255) DEFAULT NULL, - `OAuthId` VARCHAR(255) DEFAULT NULL, - `RefreshTokenExpiryTime` DATETIME(6) NOT NULL, - `AuthRole` BIGINT(11) NOT NULL DEFAULT 0, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_AuthUsersUpdate`; - -CREATE TRIGGER `TR_AuthUsersUpdate` - AFTER UPDATE - ON `AuthUsers` - FOR EACH ROW -BEGIN - INSERT INTO `AuthUsersHistory` ( - `Id`, `FirstName`, `LastName`, `EMail`, `Password`, `PasswordSalt`, - `RefreshToken`, `ConfirmationId`, `ForgotPasswordId`, `OAuthId`, - `RefreshTokenExpiryTime`, `AuthRole`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.FirstName, OLD.LastName, OLD.EMail, OLD.Password, OLD.PasswordSalt, OLD.RefreshToken, - OLD.ConfirmationId, OLD.ForgotPasswordId, OLD.OAuthId, OLD.RefreshTokenExpiryTime, OLD.AuthRole, - OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_AuthUsersDelete`; - -CREATE TRIGGER `TR_AuthUsersDelete` - AFTER DELETE - ON `AuthUsers` - FOR EACH ROW -BEGIN - INSERT INTO `AuthUsersHistory` ( - `Id`, `FirstName`, `LastName`, `EMail`, `Password`, `PasswordSalt`, `RefreshToken`, - `ConfirmationId`, `ForgotPasswordId`, `OAuthId`, `RefreshTokenExpiryTime`, - `AuthRole`, `Deleted`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.FirstName, OLD.LastName, OLD.EMail, OLD.Password, OLD.PasswordSalt, OLD.RefreshToken, - OLD.ConfirmationId, OLD.ForgotPasswordId, OLD.OAuthId, OLD.RefreshTokenExpiryTime, OLD.AuthRole, TRUE, - OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/auto_role_rules.sql b/bot/src/bot_data/migration/db_history_scripts/auto_role_rules.sql deleted file mode 100644 index bcfa5f77..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/auto_role_rules.sql +++ /dev/null @@ -1,46 +0,0 @@ -ALTER TABLE `AutoRoleRules` - CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6); - -ALTER TABLE `AutoRoleRules` - CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6); - -CREATE TABLE IF NOT EXISTS `AutoRoleRulesHistory` -( - `Id` BIGINT(20) NOT NULL, - `AutoRoleId` BIGINT(20) DEFAULT NULL, - `DiscordEmojiName` VARCHAR(64) DEFAULT NULL, - `DiscordRoleId` BIGINT(20) NOT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_AutoRoleRulesUpdate`; - -CREATE TRIGGER `TR_AutoRoleRulesUpdate` - AFTER UPDATE - ON `AutoRoleRules` - FOR EACH ROW -BEGIN - INSERT INTO `AutoRoleRulesHistory` ( - `Id`, `AutoRoleId`, `DiscordEmojiName`, `DiscordRoleId`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.AutoRoleRuleId, OLD.AutoRoleId, OLD.DiscordEmojiName, OLD.DiscordRoleId, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_AutoRoleRulesDelete`; - -CREATE TRIGGER `TR_AutoRoleRulesDelete` - AFTER DELETE - ON `AutoRoleRules` - FOR EACH ROW -BEGIN - INSERT INTO `AutoRoleRulesHistory` ( - `Id`, `AutoRoleId`, `DiscordEmojiName`, `DiscordRoleId`, `Deleted`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.AutoRoleRuleId, OLD.AutoRoleId, OLD.DiscordEmojiName, OLD.DiscordRoleId, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/auto_roles.sql b/bot/src/bot_data/migration/db_history_scripts/auto_roles.sql deleted file mode 100644 index 7b78ea02..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/auto_roles.sql +++ /dev/null @@ -1,48 +0,0 @@ -ALTER TABLE `AutoRoles` - CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6); - -ALTER TABLE `AutoRoles` - CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6); - -CREATE TABLE IF NOT EXISTS `AutoRolesHistory` -( - `Id` BIGINT(20) NOT NULL, - `ServerId` BIGINT(20) DEFAULT NULL, - `DiscordChannelId` BIGINT(20) NOT NULL, - `DiscordMessageId` BIGINT(20) NOT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_AutoRolesUpdate`; - -CREATE TRIGGER `TR_AutoRolesUpdate` - AFTER UPDATE - ON `AutoRoles` - FOR EACH ROW -BEGIN - INSERT INTO `AutoRolesHistory` ( - `Id`, `ServerId`, `DiscordChannelId`, `DiscordMessageId`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.AutoRoleId, OLD.ServerId, OLD.DiscordChannelId, OLD.DiscordMessageId, OLD.LastModifiedAt, - CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_AutoRolesDelete`; - -CREATE TRIGGER `TR_AutoRolesDelete` - AFTER DELETE - ON `AutoRoles` - FOR EACH ROW -BEGIN - INSERT INTO `AutoRolesHistory` ( - `Id`, `ServerId`, `DiscordChannelId`, `DiscordMessageId`, `Deleted`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.AutoRoleId, OLD.ServerId, OLD.DiscordChannelId, OLD.DiscordMessageId, TRUE, OLD.LastModifiedAt, - CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/clients.sql b/bot/src/bot_data/migration/db_history_scripts/clients.sql deleted file mode 100644 index b1048785..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/clients.sql +++ /dev/null @@ -1,54 +0,0 @@ -ALTER TABLE `Clients` - CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6); - -ALTER TABLE `Clients` - CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6); - -CREATE TABLE IF NOT EXISTS `ClientsHistory` -( - `Id` BIGINT(20) NOT NULL, - `DiscordId` BIGINT(20) NOT NULL, - `SentMessageCount` BIGINT(20) NOT NULL DEFAULT 0, - `ReceivedMessageCount` BIGINT(20) NOT NULL DEFAULT 0, - `DeletedMessageCount` BIGINT(20) NOT NULL DEFAULT 0, - `ReceivedCommandsCount` BIGINT(20) NOT NULL DEFAULT 0, - `MovedUsersCount` BIGINT(20) NOT NULL DEFAULT 0, - `ServerId` BIGINT(20) DEFAULT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_ClientsUpdate`; - -CREATE TRIGGER `TR_ClientsUpdate` - AFTER UPDATE - ON `Clients` - FOR EACH ROW -BEGIN - INSERT INTO `ClientsHistory` ( - `Id`, `DiscordId`, `SentMessageCount`, `ReceivedMessageCount`, `DeletedMessageCount`, - `ReceivedCommandsCount`, `MovedUsersCount`, `ServerId`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.ClientId, OLD.DiscordClientId, OLD.SentMessageCount, OLD.ReceivedMessageCount, OLD.DeletedMessageCount, - OLD.ReceivedCommandsCount, OLD.MovedUsersCount, OLD.ServerId, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_ClientsDelete`; - -CREATE TRIGGER `TR_ClientsDelete` - AFTER DELETE - ON `Clients` - FOR EACH ROW -BEGIN - INSERT INTO `ClientsHistory` ( - `Id`, `DiscordId`, `SentMessageCount`, `ReceivedMessageCount`, `DeletedMessageCount`, - `ReceivedCommandsCount`, `MovedUsersCount`, `ServerId`, `Deleted`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.ClientId, OLD.DiscordClientId, OLD.SentMessageCount, OLD.ReceivedMessageCount, OLD.DeletedMessageCount, - OLD.ReceivedCommandsCount, OLD.MovedUsersCount, OLD.ServerId, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/config/server_afk_channels.sql b/bot/src/bot_data/migration/db_history_scripts/config/server_afk_channels.sql deleted file mode 100644 index 4dfd7e31..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/config/server_afk_channels.sql +++ /dev/null @@ -1,57 +0,0 @@ -CREATE TABLE IF NOT EXISTS `CFG_ServerAFKChannelIdsHistory` -( - `Id` BIGINT(20) NOT NULL, - `ChannelId` BIGINT NOT NULL, - `ServerId` BIGINT NOT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_CFG_ServerAFKChannelIdsUpdate`; - -CREATE TRIGGER `TR_CFG_ServerAFKChannelIdsUpdate` - AFTER UPDATE - ON `CFG_ServerAFKChannelIds` - FOR EACH ROW -BEGIN - INSERT INTO `CFG_ServerAFKChannelIdsHistory` ( - `Id`, - `ChannelId`, - `ServerId`, - `DateFrom`, - `DateTo` - ) - VALUES ( - OLD.Id, - OLD.ChannelId, - OLD.ServerId, - OLD.LastModifiedAt, - CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_CFG_ServerAFKChannelIdsDelete`; - -CREATE TRIGGER `TR_CFG_ServerAFKChannelIdsDelete` - AFTER DELETE - ON `CFG_ServerAFKChannelIds` - FOR EACH ROW -BEGIN - INSERT INTO `CFG_ServerAFKChannelIdsHistory` ( - `Id`, - `ChannelId`, - `ServerId`, - `Deleted`, - `DateFrom`, - `DateTo` - ) - VALUES ( - OLD.Id, - OLD.ChannelId, - OLD.ServerId, - TRUE, - OLD.LastModifiedAt, - CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/config/server_team_roles.sql b/bot/src/bot_data/migration/db_history_scripts/config/server_team_roles.sql deleted file mode 100644 index 8733da4d..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/config/server_team_roles.sql +++ /dev/null @@ -1,62 +0,0 @@ -CREATE TABLE IF NOT EXISTS `CFG_ServerTeamRoleIdsHistory` -( - `Id` BIGINT(20) NOT NULL, - `RoleId` BIGINT NOT NULL, - `TeamMemberType` ENUM('Moderator', 'Admin') NOT NULL, - `ServerId` BIGINT NOT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_CFG_ServerTeamRoleIdsUpdate`; - -CREATE TRIGGER `TR_CFG_ServerTeamRoleIdsUpdate` - AFTER UPDATE - ON `CFG_ServerTeamRoleIds` - FOR EACH ROW -BEGIN - INSERT INTO `CFG_ServerTeamRoleIdsHistory` ( - `Id`, - `RoleId`, - `TeamMemberType`, - `ServerId`, - `DateFrom`, - `DateTo` - ) - VALUES ( - OLD.Id, - OLD.RoleId, - OLD.TeamMemberType, - OLD.ServerId, - OLD.LastModifiedAt, - CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_CFG_ServerTeamRoleIdsDelete`; - -CREATE TRIGGER `TR_CFG_ServerTeamRoleIdsDelete` - AFTER DELETE - ON `CFG_ServerTeamRoleIds` - FOR EACH ROW -BEGIN - INSERT INTO `CFG_ServerTeamRoleIdsHistory` ( - `Id`, - `RoleId`, - `TeamMemberType`, - `ServerId`, - `Deleted`, - `DateFrom`, - `DateTo` - ) - VALUES ( - OLD.Id, - OLD.RoleId, - OLD.TeamMemberType, - OLD.ServerId, - TRUE, - OLD.LastModifiedAt, - CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/config/technician_ids.sql b/bot/src/bot_data/migration/db_history_scripts/config/technician_ids.sql deleted file mode 100644 index 251d4b30..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/config/technician_ids.sql +++ /dev/null @@ -1,52 +0,0 @@ -CREATE TABLE IF NOT EXISTS `CFG_TechnicianIdsHistory` -( - `Id` BIGINT(20) NOT NULL, - `TechnicianId` BIGINT NOT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_CFG_TechnicianIdsUpdate`; - -CREATE TRIGGER `TR_CFG_TechnicianIdsUpdate` - AFTER UPDATE - ON `CFG_TechnicianIds` - FOR EACH ROW -BEGIN - INSERT INTO `CFG_TechnicianIdsHistory` ( - `Id`, - `TechnicianId`, - `DateFrom`, - `DateTo` - ) - VALUES ( - OLD.Id, - OLD.TechnicianId, - OLD.LastModifiedAt, - CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_CFG_TechnicianIdsDelete`; - -CREATE TRIGGER `TR_CFG_TechnicianIdsDelete` - AFTER DELETE - ON `CFG_TechnicianIds` - FOR EACH ROW -BEGIN - INSERT INTO `CFG_TechnicianIdsHistory` ( - `Id`, - `TechnicianId`, - `Deleted`, - `DateFrom`, - `DateTo` - ) - VALUES ( - OLD.Id, - OLD.TechnicianId, - TRUE, - OLD.LastModifiedAt, - CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/config/technician_ping_urls.sql b/bot/src/bot_data/migration/db_history_scripts/config/technician_ping_urls.sql deleted file mode 100644 index d61c3cce..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/config/technician_ping_urls.sql +++ /dev/null @@ -1,52 +0,0 @@ -CREATE TABLE IF NOT EXISTS `CFG_TechnicianPingUrlsHistory` -( - `Id` BIGINT(20) NOT NULL, - `URL` VARCHAR(255) NOT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_CFG_TechnicianPingUrlsUpdate`; - -CREATE TRIGGER `TR_CFG_TechnicianPingUrlsUpdate` - AFTER UPDATE - ON `CFG_TechnicianPingUrls` - FOR EACH ROW -BEGIN - INSERT INTO `CFG_TechnicianPingUrlsHistory` ( - `Id`, - `URL`, - `DateFrom`, - `DateTo` - ) - VALUES ( - OLD.Id, - OLD.URL, - OLD.LastModifiedAt, - CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_CFG_TechnicianPingUrlsDelete`; - -CREATE TRIGGER `TR_CFG_TechnicianPingUrlsDelete` - AFTER DELETE - ON `CFG_TechnicianPingUrls` - FOR EACH ROW -BEGIN - INSERT INTO `CFG_TechnicianPingUrlsHistory` ( - `Id`, - `URL`, - `Deleted`, - `DateFrom`, - `DateTo` - ) - VALUES ( - OLD.Id, - OLD.URL, - TRUE, - OLD.LastModifiedAt, - CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/game_servers.sql b/bot/src/bot_data/migration/db_history_scripts/game_servers.sql deleted file mode 100644 index 091cbf51..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/game_servers.sql +++ /dev/null @@ -1,46 +0,0 @@ -ALTER TABLE `GameServers` - CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6); - -ALTER TABLE `GameServers` - CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6); - -CREATE TABLE IF NOT EXISTS `GameServersHistory` -( - `Id` BIGINT(20) NOT NULL, - `Name` VARCHAR(255) NOT NULL, - `ServerId` BIGINT(20) NOT NULL, - `ApiKeyId` BIGINT(20) NOT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_GameServersUpdate`; - -CREATE TRIGGER `TR_GameServersUpdate` - AFTER UPDATE - ON `GameServers` - FOR EACH ROW -BEGIN - INSERT INTO `GameServersHistory` ( - `Id`, `Name`, `ServerId`, `ApiKeyId`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.Name, OLD.ServerId, OLD.ApiKeyId, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_GameServersDelete`; - -CREATE TRIGGER `TR_GameServersDelete` - AFTER DELETE - ON `GameServers` - FOR EACH ROW -BEGIN - INSERT INTO `GameServersHistory` ( - `Id`, `Name`, `ServerId`, `ApiKeyId`, `Deleted`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.Name, OLD.ServerId, OLD.ApiKeyId, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/known_users.sql b/bot/src/bot_data/migration/db_history_scripts/known_users.sql deleted file mode 100644 index 5263aa8d..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/known_users.sql +++ /dev/null @@ -1,44 +0,0 @@ -ALTER TABLE `KnownUsers` - CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6); - -ALTER TABLE `KnownUsers` - CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6); - -CREATE TABLE IF NOT EXISTS `KnownUsersHistory` -( - `Id` BIGINT(20) NOT NULL, - `DiscordId` BIGINT(20) NOT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_KnownUsersUpdate`; - -CREATE TRIGGER `TR_KnownUsersUpdate` - AFTER UPDATE - ON `KnownUsers` - FOR EACH ROW -BEGIN - INSERT INTO `KnownUsersHistory` ( - `Id`, `DiscordId`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.KnownUserId, OLD.DiscordId, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_KnownUsersDelete`; - -CREATE TRIGGER `TR_KnownUsersDelete` - AFTER DELETE - ON `KnownUsers` - FOR EACH ROW -BEGIN - INSERT INTO `KnownUsersHistory` ( - `Id`, `DiscordId`, `Deleted`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.KnownUserId, OLD.DiscordId, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/levels.sql b/bot/src/bot_data/migration/db_history_scripts/levels.sql deleted file mode 100644 index 6ba534e2..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/levels.sql +++ /dev/null @@ -1,50 +0,0 @@ -ALTER TABLE `Levels` - CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6); - -ALTER TABLE `Levels` - CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6); - -CREATE TABLE IF NOT EXISTS `LevelsHistory` -( - `Id` BIGINT(20) NOT NULL, - `Name` VARCHAR(255) NOT NULL, - `Color` VARCHAR(8) NOT NULL, - `MinXp` BIGINT(20) NOT NULL, - `PermissionInt` BIGINT(20) NOT NULL, - `ServerId` BIGINT(20) DEFAULT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_LevelsUpdate`; - -CREATE TRIGGER `TR_LevelsUpdate` - AFTER UPDATE - ON `Levels` - FOR EACH ROW -BEGIN - INSERT INTO `LevelsHistory` ( - `Id`, `Name`, `Color`, `MinXp`, `PermissionInt`, `ServerId`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.Name, OLD.Color, OLD.MinXp, OLD.PermissionInt, OLD.ServerId, OLD.LastModifiedAt, - CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_LevelsDelete`; - -CREATE TRIGGER `TR_LevelsDelete` - AFTER DELETE - ON `Levels` - FOR EACH ROW -BEGIN - INSERT INTO `LevelsHistory` ( - `Id`, `Name`, `Color`, `MinXp`, `PermissionInt`, `ServerId`, `Deleted`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.Name, OLD.Color, OLD.MinXp, OLD.PermissionInt, OLD.ServerId, TRUE, OLD.LastModifiedAt, - CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/servers.sql b/bot/src/bot_data/migration/db_history_scripts/servers.sql deleted file mode 100644 index 2d9d6c49..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/servers.sql +++ /dev/null @@ -1,44 +0,0 @@ -ALTER TABLE `Servers` - CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6); - -ALTER TABLE `Servers` - CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6); - -CREATE TABLE IF NOT EXISTS `ServersHistory` -( - `Id` BIGINT(20) NOT NULL, - `DiscordId` BIGINT(20) NOT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_ServersUpdate`; - -CREATE TRIGGER `TR_ServersUpdate` - AFTER UPDATE - ON `Servers` - FOR EACH ROW -BEGIN - INSERT INTO `ServersHistory` ( - `Id`, `DiscordId`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.ServerId, OLD.DiscordServerId, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_ServersDelete`; - -CREATE TRIGGER `TR_ServersDelete` - AFTER DELETE - ON `Servers` - FOR EACH ROW -BEGIN - INSERT INTO `ServersHistory` ( - `Id`, `DiscordId`, `Deleted`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.ServerId, OLD.DiscordServerId, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/user_game_idents.sql b/bot/src/bot_data/migration/db_history_scripts/user_game_idents.sql deleted file mode 100644 index fab7a21b..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/user_game_idents.sql +++ /dev/null @@ -1,46 +0,0 @@ -ALTER TABLE `UserGameIdents` - CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6); - -ALTER TABLE `UserGameIdents` - CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6); - -CREATE TABLE IF NOT EXISTS `UserGameIdentsHistory` -( - `Id` BIGINT(20) NOT NULL, - `UserId` BIGINT(20) NOT NULL, - `GameServerId` BIGINT(20) NOT NULL, - `Ident` VARCHAR(255) NOT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_UserGameIdentsUpdate`; - -CREATE TRIGGER `TR_UserGameIdentsUpdate` - AFTER UPDATE - ON `UserGameIdents` - FOR EACH ROW -BEGIN - INSERT INTO `UserGameIdentsHistory` ( - `Id`, `UserId`, `GameServerId`, `Ident`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.UserId, OLD.GameServerId, OLD.Ident, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_UserGameIdentsDelete`; - -CREATE TRIGGER `TR_UserGameIdentsDelete` - AFTER DELETE - ON `UserGameIdents` - FOR EACH ROW -BEGIN - INSERT INTO `UserGameIdentsHistory` ( - `Id`, `UserId`, `GameServerId`, `Ident`, `Deleted`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.UserId, OLD.GameServerId, OLD.Ident, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/user_joined_game_servers.sql b/bot/src/bot_data/migration/db_history_scripts/user_joined_game_servers.sql deleted file mode 100644 index 203df921..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/user_joined_game_servers.sql +++ /dev/null @@ -1,47 +0,0 @@ -ALTER TABLE `UserJoinedGameServer` - CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6); - -ALTER TABLE `UserJoinedGameServer` - CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6); - -CREATE TABLE IF NOT EXISTS `UserJoinedGameServerHistory` -( - `Id` BIGINT(20) NOT NULL, - `UserId` BIGINT(20) NOT NULL, - `GameServerId` BIGINT(20) NOT NULL, - `JoinedOn` DATETIME(6) NOT NULL, - `LeavedOn` DATETIME(6) DEFAULT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_UserJoinedGameServerUpdate`; - -CREATE TRIGGER `TR_UserJoinedGameServerUpdate` - AFTER UPDATE - ON `UserJoinedGameServer` - FOR EACH ROW -BEGIN - INSERT INTO `UserJoinedGameServerHistory` ( - `Id`, `UserId`, `GameServerId`, `JoinedOn`, `LeavedOn`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.UserId, OLD.GameServerId, OLD.JoinedOn, OLD.LeavedOn, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_UserJoinedGameServerDelete`; - -CREATE TRIGGER `TR_UserJoinedGameServerDelete` - AFTER DELETE - ON `UserJoinedGameServer` - FOR EACH ROW -BEGIN - INSERT INTO `UserJoinedGameServerHistory` ( - `Id`, `UserId`, `GameServerId`, `JoinedOn`, `LeavedOn`, `Deleted`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.UserId, OLD.GameServerId, OLD.JoinedOn, OLD.LeavedOn, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/user_joined_servers.sql b/bot/src/bot_data/migration/db_history_scripts/user_joined_servers.sql deleted file mode 100644 index 45bc7d1e..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/user_joined_servers.sql +++ /dev/null @@ -1,46 +0,0 @@ -ALTER TABLE `UserJoinedServers` - CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6); - -ALTER TABLE `UserJoinedServers` - CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6); - -CREATE TABLE IF NOT EXISTS `UserJoinedServersHistory` -( - `Id` BIGINT(20) NOT NULL, - `UserId` BIGINT(20) NOT NULL, - `JoinedOn` DATETIME(6) NOT NULL, - `LeavedOn` DATETIME(6) DEFAULT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_UserJoinedServersUpdate`; - -CREATE TRIGGER `TR_UserJoinedServersUpdate` - AFTER UPDATE - ON `UserJoinedServers` - FOR EACH ROW -BEGIN - INSERT INTO `UserJoinedServersHistory` ( - `Id`, `UserId`, `JoinedOn`, `LeavedOn`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.JoinId, OLD.UserId, OLD.JoinedOn, OLD.LeavedOn, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_UserJoinedServersDelete`; - -CREATE TRIGGER `TR_UserJoinedServersDelete` - AFTER DELETE - ON `UserJoinedServers` - FOR EACH ROW -BEGIN - INSERT INTO `UserJoinedServersHistory` ( - `Id`, `UserId`, `JoinedOn`, `LeavedOn`, `Deleted`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.JoinId, OLD.UserId, OLD.JoinedOn, OLD.LeavedOn, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/user_joined_voice_channel.sql b/bot/src/bot_data/migration/db_history_scripts/user_joined_voice_channel.sql deleted file mode 100644 index 8d439f7b..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/user_joined_voice_channel.sql +++ /dev/null @@ -1,49 +0,0 @@ -ALTER TABLE `UserJoinedVoiceChannel` - CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6); - -ALTER TABLE `UserJoinedVoiceChannel` - CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6); - -CREATE TABLE IF NOT EXISTS `UserJoinedVoiceChannelHistory` -( - `Id` BIGINT(20) NOT NULL, - `UserId` BIGINT(20) NOT NULL, - `DiscordChannelId` BIGINT(20) NOT NULL, - `JoinedOn` DATETIME(6) NOT NULL, - `LeavedOn` DATETIME(6) DEFAULT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_UserJoinedVoiceChannelUpdate`; - -CREATE TRIGGER `TR_UserJoinedVoiceChannelUpdate` - AFTER UPDATE - ON `UserJoinedVoiceChannel` - FOR EACH ROW -BEGIN - INSERT INTO `UserJoinedVoiceChannelHistory` ( - `Id`, `UserId`, `DiscordChannelId`, `JoinedOn`, `LeavedOn`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.JoinId, OLD.UserId, OLD.DiscordChannelId, OLD.JoinedOn, OLD.LeavedOn, OLD.LastModifiedAt, - CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_UserJoinedVoiceChannelDelete`; - -CREATE TRIGGER `TR_UserJoinedVoiceChannelDelete` - AFTER DELETE - ON `UserJoinedVoiceChannel` - FOR EACH ROW -BEGIN - INSERT INTO `UserJoinedVoiceChannelHistory` ( - `Id`, `UserId`, `DiscordChannelId`, `JoinedOn`, `LeavedOn`, `Deleted`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.JoinId, OLD.UserId, OLD.DiscordChannelId, OLD.JoinedOn, OLD.LeavedOn, TRUE, OLD.LastModifiedAt, - CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/user_message_count_per_hour.sql b/bot/src/bot_data/migration/db_history_scripts/user_message_count_per_hour.sql deleted file mode 100644 index a86841b8..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/user_message_count_per_hour.sql +++ /dev/null @@ -1,47 +0,0 @@ -ALTER TABLE `UserMessageCountPerHour` - CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6); - -ALTER TABLE `UserMessageCountPerHour` - CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6); - -CREATE TABLE IF NOT EXISTS `UserMessageCountPerHourHistory` -( - `Id` BIGINT(20) NOT NULL, - `Date` DATETIME(6) NOT NULL, - `Hour` BIGINT(20) DEFAULT NULL, - `XPCount` BIGINT(20) DEFAULT NULL, - `UserId` BIGINT(20) DEFAULT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_UserMessageCountPerHourUpdate`; - -CREATE TRIGGER `TR_UserMessageCountPerHourUpdate` - AFTER UPDATE - ON `UserMessageCountPerHour` - FOR EACH ROW -BEGIN - INSERT INTO `UserMessageCountPerHourHistory` ( - `Id`, `UserId`, `Date`, `Hour`, `XPCount`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.UserId, OLD.Date, OLD.Hour, OLD.XPCount, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_UserMessageCountPerHourDelete`; - -CREATE TRIGGER `TR_UserMessageCountPerHourDelete` - AFTER DELETE - ON `UserMessageCountPerHour` - FOR EACH ROW -BEGIN - INSERT INTO `UserMessageCountPerHourHistory` ( - `Id`, `UserId`, `Date`, `Hour`, `XPCount`, `Deleted`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.UserId, OLD.Date, OLD.Hour, OLD.XPCount, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/user_warnings.sql b/bot/src/bot_data/migration/db_history_scripts/user_warnings.sql deleted file mode 100644 index 4371b207..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/user_warnings.sql +++ /dev/null @@ -1,46 +0,0 @@ -ALTER TABLE `UserWarnings` - CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6); - -ALTER TABLE `UserWarnings` - CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6); - -CREATE TABLE IF NOT EXISTS `UserWarningsHistory` -( - `Id` BIGINT(20) NOT NULL, - `Description` VARCHAR(255) NOT NULL, - `UserId` BIGINT(20) NOT NULL, - `Author` BIGINT(20) DEFAULT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_UserWarningsUpdate`; - -CREATE TRIGGER `TR_UserWarningsUpdate` - AFTER UPDATE - ON `UserWarnings` - FOR EACH ROW -BEGIN - INSERT INTO `UserWarningsHistory` ( - `Id`, `Description`, `UserId`, `Author`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.Description, OLD.UserId, OLD.Author, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; - -DROP TRIGGER IF EXISTS `TR_UserWarningsDelete`; - -CREATE TRIGGER `TR_UserWarningsDelete` - AFTER DELETE - ON `UserWarnings` - FOR EACH ROW -BEGIN - INSERT INTO `UserWarningsHistory` ( - `Id`, `Description`, `UserId`, `Author`, `Deleted`, `DateFrom`, `DateTo` - ) - VALUES ( - OLD.Id, OLD.Description, OLD.UserId, OLD.Author, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6) - ); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/db_history_scripts/users.sql b/bot/src/bot_data/migration/db_history_scripts/users.sql deleted file mode 100644 index a91cf560..00000000 --- a/bot/src/bot_data/migration/db_history_scripts/users.sql +++ /dev/null @@ -1,45 +0,0 @@ -ALTER TABLE `Users` - CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6); - -ALTER TABLE `Users` - CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6); - -CREATE TABLE IF NOT EXISTS `UsersHistory` -( - `Id` BIGINT(20) NOT NULL, - `DiscordId` BIGINT(20) NOT NULL, - `XP` BIGINT(20) NOT NULL DEFAULT 0, - `ReactionCount` BIGINT(20) NOT NULL DEFAULT 0, - `MessageCount` BIGINT(20) NOT NULL DEFAULT 0, - `Birthday` DATE NULL, - `ServerId` BIGINT(20) DEFAULT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); - -DROP TRIGGER IF EXISTS `TR_UsersUpdate`; - -CREATE TRIGGER `TR_UsersUpdate` - AFTER UPDATE - ON `Users` - FOR EACH ROW -BEGIN - INSERT INTO `UsersHistory` (`Id`, `DiscordId`, `XP`, `ReactionCount`, `MessageCount`, `Birthday`, `ServerId`, - `DateFrom`, `DateTo`) - VALUES (OLD.UserId, OLD.DiscordId, OLD.XP, OLD.ReactionCount, OLD.MessageCount, OLD.Birthday, OLD.ServerId, - OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); -END; - -DROP TRIGGER IF EXISTS `TR_UsersDelete`; - -CREATE TRIGGER `TR_UsersDelete` - AFTER DELETE - ON `Users` - FOR EACH ROW -BEGIN - INSERT INTO `UsersHistory` (`Id`, `DiscordId`, `XP`, `ReactionCount`, `MessageCount`, `Birthday`, `ServerId`, - `Deleted`, `DateFrom`, `DateTo`) - VALUES (OLD.UserId, OLD.DiscordId, OLD.XP, OLD.ReactionCount, OLD.MessageCount, OLD.Birthday, OLD.ServerId, TRUE, - OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); -END; \ No newline at end of file diff --git a/bot/src/bot_data/migration/default_role_migration.py b/bot/src/bot_data/migration/default_role_migration.py deleted file mode 100644 index 24fd4940..00000000 --- a/bot/src/bot_data/migration/default_role_migration.py +++ /dev/null @@ -1,34 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class DefaultRoleMigration(MigrationABC): - name = "1.1.3_DefaultRoleMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_Server - ADD DefaultRoleId BIGINT NULL AFTER LoginMessageChannelId; - """ - ) - ) - - def downgrade(self): - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_Server DROP COLUMN DefaultRoleId; - """ - ) - ) diff --git a/bot/src/bot_data/migration/fix_updates_migration.py b/bot/src/bot_data/migration/fix_updates_migration.py deleted file mode 100644 index f4d5e020..00000000 --- a/bot/src/bot_data/migration/fix_updates_migration.py +++ /dev/null @@ -1,51 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class FixUpdatesMigration(MigrationABC): - name = "1.1.7_FixUpdatesMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_ServerHistory - ADD DefaultRoleId BIGINT NULL AFTER LoginMessageChannelId; - """ - ) - ) - - self._cursor.execute( - str( - """ALTER TABLE CFG_TechnicianHistory ADD FeatureFlags JSON NULL DEFAULT ('{}') AFTER CacheMaxMessages;""" - ) - ) - - self._cursor.execute( - str( - """ALTER TABLE CFG_ServerHistory ADD FeatureFlags JSON NULL DEFAULT ('{}') AFTER LoginMessageChannelId;""" - ) - ) - - self._exec(__file__, "config/server.sql") - self._exec(__file__, "config/technician.sql") - - def downgrade(self): - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_ServerHistory DROP COLUMN DefaultRoleId; - """ - ) - ) - self._cursor.execute("ALTER TABLE CFG_TechnicianHistory DROP COLUMN FeatureFlags;") - self._cursor.execute("ALTER TABLE CFG_ServerHistory DROP COLUMN FeatureFlags;") diff --git a/bot/src/bot_data/migration/fix_user_history_migration.py b/bot/src/bot_data/migration/fix_user_history_migration.py deleted file mode 100644 index 1aec1fa0..00000000 --- a/bot/src/bot_data/migration/fix_user_history_migration.py +++ /dev/null @@ -1,41 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class FixUserHistoryMigration(MigrationABC): - name = "1.2.0_FixUserHistoryMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - # fix 1.1.0_AchievementsMigration - self._cursor.execute( - str(f"""ALTER TABLE UsersHistory ADD COLUMN ReactionCount BIGINT NOT NULL DEFAULT 0 AFTER XP;""") - ) - self._cursor.execute( - str(f"""ALTER TABLE UsersHistory ADD COLUMN MessageCount BIGINT NOT NULL DEFAULT 0 AFTER ReactionCount;""") - ) - self._exec(__file__, "users.sql") - - def downgrade(self): - self._cursor.execute( - str( - f""" - ALTER TABLE UsersHistory DROP COLUMN MessageCount; - """ - ) - ) - self._cursor.execute( - str( - f""" - ALTER TABLE UsersHistory DROP COLUMN ReactionCount; - """ - ) - ) diff --git a/bot/src/bot_data/migration/initial_migration.py b/bot/src/bot_data/migration/initial_migration.py deleted file mode 100644 index 48551dbd..00000000 --- a/bot/src/bot_data/migration/initial_migration.py +++ /dev/null @@ -1,138 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class InitialMigration(MigrationABC): - name = "0.1_InitialMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `MigrationHistory` ( - `MigrationId` VARCHAR(255), - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - PRIMARY KEY(`MigrationId`) - ); - """ - ) - ) - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `Servers` ( - `ServerId` BIGINT NOT NULL AUTO_INCREMENT, - `DiscordServerId` BIGINT NOT NULL, - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - PRIMARY KEY(`ServerId`) - ); - """ - ) - ) - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `Users` ( - `UserId` BIGINT NOT NULL AUTO_INCREMENT, - `DiscordId` BIGINT NOT NULL, - `XP` BIGINT NOT NULL DEFAULT 0, - `ServerId` BIGINT, - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - FOREIGN KEY (`ServerId`) REFERENCES Servers(`ServerId`), - PRIMARY KEY(`UserId`) - ); - """ - ) - ) - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `Clients` ( - `ClientId` BIGINT NOT NULL AUTO_INCREMENT, - `DiscordClientId` BIGINT NOT NULL, - `SentMessageCount` BIGINT NOT NULL DEFAULT 0, - `ReceivedMessageCount` BIGINT NOT NULL DEFAULT 0, - `DeletedMessageCount` BIGINT NOT NULL DEFAULT 0, - `ReceivedCommandsCount` BIGINT NOT NULL DEFAULT 0, - `MovedUsersCount` BIGINT NOT NULL DEFAULT 0, - `ServerId` BIGINT, - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - FOREIGN KEY (`ServerId`) REFERENCES Servers(`ServerId`), - PRIMARY KEY(`ClientId`) - ); - """ - ) - ) - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `KnownUsers` ( - `KnownUserId` BIGINT NOT NULL AUTO_INCREMENT, - `DiscordId` BIGINT NOT NULL, - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - PRIMARY KEY(`KnownUserId`) - ); - """ - ) - ) - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `UserJoinedServers` ( - `JoinId` BIGINT NOT NULL AUTO_INCREMENT, - `UserId` BIGINT NOT NULL, - `JoinedOn` DATETIME(6) NOT NULL, - `LeavedOn` DATETIME(6), - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - FOREIGN KEY (`UserId`) REFERENCES Users(`UserId`), - PRIMARY KEY(`JoinId`) - ); - """ - ) - ) - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `UserJoinedVoiceChannel` ( - `JoinId` BIGINT NOT NULL AUTO_INCREMENT, - `UserId` BIGINT NOT NULL, - `DiscordChannelId` BIGINT NOT NULL, - `JoinedOn` DATETIME(6) NOT NULL, - `LeavedOn` DATETIME(6), - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - FOREIGN KEY (`UserId`) REFERENCES Users(`UserId`), - PRIMARY KEY(`JoinId`) - ); - """ - ) - ) - - def downgrade(self): - self._cursor.execute("DROP TABLE `Servers`;") - self._cursor.execute("DROP TABLE `Users`;") - self._cursor.execute("DROP TABLE `Clients`;") - self._cursor.execute("DROP TABLE `KnownUsers`;") - self._cursor.execute("DROP TABLE `UserJoinedServers`;") - self._cursor.execute("DROP TABLE `UserJoinedVoiceChannel`;") diff --git a/bot/src/bot_data/migration/level_migration.py b/bot/src/bot_data/migration/level_migration.py deleted file mode 100644 index 20ad3c7b..00000000 --- a/bot/src/bot_data/migration/level_migration.py +++ /dev/null @@ -1,38 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class LevelMigration(MigrationABC): - name = "0.3_LevelMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `Levels` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `Name` VARCHAR(255) NOT NULL, - `Color` VARCHAR(8) NOT NULL, - `MinXp` BIGINT NOT NULL, - `PermissionInt` BIGINT NOT NULL, - `ServerId` BIGINT, - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - PRIMARY KEY(`Id`), - FOREIGN KEY (`ServerId`) REFERENCES `Servers`(`ServerId`) - ); - """ - ) - ) - - def downgrade(self): - self._cursor.execute("DROP TABLE `Levels`;") diff --git a/bot/src/bot_data/migration/maintenance_mode_migration.py b/bot/src/bot_data/migration/maintenance_mode_migration.py deleted file mode 100644 index 467c8604..00000000 --- a/bot/src/bot_data/migration/maintenance_mode_migration.py +++ /dev/null @@ -1,51 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class MaintenanceModeMigration(MigrationABC): - name = "1.2.0_MaintenanceModeMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_Technician - ADD Maintenance BOOLEAN DEFAULT FALSE AFTER MaxSteamOfferCount; - """ - ) - ) - - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_TechnicianHistory - ADD Maintenance BOOLEAN DEFAULT FALSE AFTER MaxSteamOfferCount; - """ - ) - ) - self._exec(__file__, "config/technician.sql") - - def downgrade(self): - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_Technician DROP COLUMN Maintenance; - """ - ) - ) - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_TechnicianHistory DROP COLUMN Maintenance; - """ - ) - ) diff --git a/bot/src/bot_data/migration/max_steam_offer_count_migration.py b/bot/src/bot_data/migration/max_steam_offer_count_migration.py deleted file mode 100644 index fe926c24..00000000 --- a/bot/src/bot_data/migration/max_steam_offer_count_migration.py +++ /dev/null @@ -1,51 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class MaxSteamOfferCountMigration(MigrationABC): - name = "1.2.0_MaxSteamOfferCountMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_Technician - ADD MaxSteamOfferCount BIGINT NOT NULL DEFAULT 250 AFTER CacheMaxMessages; - """ - ) - ) - - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_TechnicianHistory - ADD MaxSteamOfferCount BIGINT NOT NULL DEFAULT 250 AFTER CacheMaxMessages; - """ - ) - ) - self._exec(__file__, "config/technician.sql") - - def downgrade(self): - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_Technician DROP COLUMN MaxSteamOfferCount; - """ - ) - ) - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_TechnicianHistory DROP COLUMN MaxSteamOfferCount; - """ - ) - ) diff --git a/bot/src/bot_data/migration/remove_stats_migration.py b/bot/src/bot_data/migration/remove_stats_migration.py deleted file mode 100644 index e5e621a5..00000000 --- a/bot/src/bot_data/migration/remove_stats_migration.py +++ /dev/null @@ -1,43 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class RemoveStatsMigration(MigrationABC): - name = "1.0.0_RemoveStatsMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - DROP TABLE IF EXISTS `Statistics`; - """ - ) - ) - - def downgrade(self): - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `Statistics` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `Name` VARCHAR(255) NOT NULL, - `Description` VARCHAR(255) NOT NULL, - `Code` LONGTEXT NOT NULL, - `ServerId` BIGINT, - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - PRIMARY KEY(`Id`), - FOREIGN KEY (`ServerId`) REFERENCES `Servers`(`ServerId`) - ); - """ - ) - ) diff --git a/bot/src/bot_data/migration/short_role_name_migration.py b/bot/src/bot_data/migration/short_role_name_migration.py deleted file mode 100644 index 7fe5ddfd..00000000 --- a/bot/src/bot_data/migration/short_role_name_migration.py +++ /dev/null @@ -1,40 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class ShortRoleNameMigration(MigrationABC): - name = "1.1.7_ShortRoleNameMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `ShortRoleNames` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `ShortName` VARCHAR(255) NOT NULL, - `DiscordRoleId` BIGINT NOT NULL, - `Position` ENUM('before', 'after') NOT NULL, - `ServerId` BIGINT, - `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), - `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), - PRIMARY KEY(`Id`), - FOREIGN KEY (`ServerId`) REFERENCES `Servers`(`ServerId`) - ); - """ - ) - ) - - self._exec(__file__, "short_rule_names.sql") - - def downgrade(self): - self._cursor.execute("DROP TABLE `ShortRoleNames`;") - self._cursor.execute("DROP TABLE `ShortRoleNamesHistory`;") diff --git a/bot/src/bot_data/migration/short_role_name_only_highest_migration.py b/bot/src/bot_data/migration/short_role_name_only_highest_migration.py deleted file mode 100644 index 315e22f1..00000000 --- a/bot/src/bot_data/migration/short_role_name_only_highest_migration.py +++ /dev/null @@ -1,51 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class ShortRoleNameOnlyHighestMigration(MigrationABC): - name = "1.1.9_ShortRoleNameOnlyHighestMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_Server - ADD ShortRoleNameSetOnlyHighest BOOLEAN NOT NULL DEFAULT FALSE AFTER DefaultRoleId; - """ - ) - ) - - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_ServerHistory - ADD ShortRoleNameSetOnlyHighest BOOLEAN NOT NULL DEFAULT FALSE AFTER DefaultRoleId; - """ - ) - ) - self._exec(__file__, "config/server.sql") - - def downgrade(self): - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_Server DROP COLUMN ShortRoleNameSetOnlyHighest; - """ - ) - ) - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_ServerHistory DROP COLUMN ShortRoleNameSetOnlyHighest; - """ - ) - ) diff --git a/bot/src/bot_data/migration/stats_migration.py b/bot/src/bot_data/migration/stats_migration.py deleted file mode 100644 index c28eeda9..00000000 --- a/bot/src/bot_data/migration/stats_migration.py +++ /dev/null @@ -1,37 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class StatsMigration(MigrationABC): - name = "0.3_StatsMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `Statistics` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `Name` VARCHAR(255) NOT NULL, - `Description` VARCHAR(255) NOT NULL, - `Code` LONGTEXT NOT NULL, - `ServerId` BIGINT, - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - PRIMARY KEY(`Id`), - FOREIGN KEY (`ServerId`) REFERENCES `Servers`(`ServerId`) - ); - """ - ) - ) - - def downgrade(self): - self._cursor.execute("DROP TABLE `Statistics`;") diff --git a/bot/src/bot_data/migration/steam_special_offer_migration.py b/bot/src/bot_data/migration/steam_special_offer_migration.py deleted file mode 100644 index 0a35e77d..00000000 --- a/bot/src/bot_data/migration/steam_special_offer_migration.py +++ /dev/null @@ -1,68 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class SteamSpecialOfferMigration(MigrationABC): - name = "1.2.0_SteamSpecialOfferMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `SteamSpecialOffers` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `Game` VARCHAR(255) NOT NULL, - `OriginalPrice` FLOAT NOT NULL, - `DiscountPrice` FLOAT NOT NULL, - `DiscountPct` BIGINT NOT NULL, - `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), - `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), - PRIMARY KEY(`Id`) - ); - """ - ) - ) - - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_Server - ADD COLUMN GameOfferNotificationChatId BIGINT NULL AFTER ShortRoleNameSetOnlyHighest; - """ - ) - ) - - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_ServerHistory - ADD COLUMN GameOfferNotificationChatId BIGINT NULL AFTER ShortRoleNameSetOnlyHighest; - """ - ) - ) - - def downgrade(self): - self._cursor.execute("DROP TABLE `SteamSpecialOffers`;") - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_Server DROP COLUMN ShortRoleNameSetOnlyHighest; - """ - ) - ) - self._cursor.execute( - str( - f""" - ALTER TABLE CFG_ServerHistory DROP COLUMN ShortRoleNameSetOnlyHighest; - """ - ) - ) diff --git a/bot/src/bot_data/migration/user_joined_game_server_migration.py b/bot/src/bot_data/migration/user_joined_game_server_migration.py deleted file mode 100644 index bef8e5aa..00000000 --- a/bot/src/bot_data/migration/user_joined_game_server_migration.py +++ /dev/null @@ -1,77 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class UserJoinedGameServerMigration(MigrationABC): - name = "1.0.0_UserJoinedGameServerMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `GameServers` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `Name` VARCHAR(255) NOT NULL, - `ServerId` BIGINT NOT NULL, - `ApiKeyId` BIGINT NOT NULL, - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - FOREIGN KEY (`ServerId`) REFERENCES Servers(`ServerId`), - FOREIGN KEY (`ApiKeyId`) REFERENCES ApiKeys(`Id`), - PRIMARY KEY(`Id`) - ); - """ - ) - ) - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `UserJoinedGameServer` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `UserId` BIGINT NOT NULL, - `GameServerId` BIGINT NOT NULL, - `JoinedOn` DATETIME(6) NOT NULL, - `LeavedOn` DATETIME(6), - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - FOREIGN KEY (`UserId`) REFERENCES Users(`UserId`), - FOREIGN KEY (`GameServerId`) REFERENCES GameServers(`Id`), - PRIMARY KEY(`Id`) - ); - """ - ) - ) - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `UserGameIdents` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `UserId` BIGINT NOT NULL, - `GameServerId` BIGINT NOT NULL, - `Ident` VARCHAR(255) NOT NULL, - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - FOREIGN KEY (`UserId`) REFERENCES Users(`UserId`), - FOREIGN KEY (`GameServerId`) REFERENCES GameServers(`Id`), - CONSTRAINT UC_UserGameIdent UNIQUE (`GameServerId`,`Ident`), - PRIMARY KEY(`Id`) - ); - """ - ) - ) - - def downgrade(self): - self._cursor.execute("DROP TABLE `GameServers`;") - self._cursor.execute("DROP TABLE `UserJoinedGameServer`;") - self._cursor.execute("DROP TABLE `UserGameIdents`;") diff --git a/bot/src/bot_data/migration/user_message_count_per_hour_migration.py b/bot/src/bot_data/migration/user_message_count_per_hour_migration.py deleted file mode 100644 index c0c4199a..00000000 --- a/bot/src/bot_data/migration/user_message_count_per_hour_migration.py +++ /dev/null @@ -1,37 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class UserMessageCountPerHourMigration(MigrationABC): - name = "0.3.1_UserMessageCountPerHourMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `UserMessageCountPerHour` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `Date` DATETIME(6) NOT NULL, - `Hour` BIGINT, - `XPCount` BIGINT, - `UserId` BIGINT, - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - PRIMARY KEY(`Id`), - FOREIGN KEY (`UserId`) REFERENCES `Users`(`UserId`) - ); - """ - ) - ) - - def downgrade(self): - self._cursor.execute("DROP TABLE `UserMessageCountPerHour`;") diff --git a/bot/src/bot_data/migration/user_warning_migration.py b/bot/src/bot_data/migration/user_warning_migration.py deleted file mode 100644 index 06e446a0..00000000 --- a/bot/src/bot_data/migration/user_warning_migration.py +++ /dev/null @@ -1,37 +0,0 @@ -from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC -from bot_data.db_context import DBContext - - -class UserWarningMigration(MigrationABC): - name = "1.0.0_UserWarningMigration" - - def __init__(self, logger: DatabaseLogger, db: DBContext): - MigrationABC.__init__(self) - self._logger = logger - self._db = db - self._cursor = db.cursor - - def upgrade(self): - self._logger.debug(__name__, "Running upgrade") - - self._cursor.execute( - str( - f""" - CREATE TABLE IF NOT EXISTS `UserWarnings` ( - `Id` BIGINT NOT NULL AUTO_INCREMENT, - `Description` VARCHAR(255) NOT NULL, - `UserId` BIGINT NOT NULL, - `Author` BIGINT NULL, - `CreatedAt` DATETIME(6), - `LastModifiedAt` DATETIME(6), - PRIMARY KEY(`Id`), - FOREIGN KEY (`UserId`) REFERENCES `Users`(`UserId`), - FOREIGN KEY (`Author`) REFERENCES `Users`(`UserId`) - ); - """ - ) - ) - - def downgrade(self): - self._cursor.execute("DROP TABLE `UserWarnings`;") diff --git a/bot/src/bot_data/model/migration.py b/bot/src/bot_data/model/migration.py new file mode 100644 index 00000000..eaf2f572 --- /dev/null +++ b/bot/src/bot_data/model/migration.py @@ -0,0 +1,17 @@ +class Migration: + def __init__(self, name: str, version: str, script: str): + self._name = name + self._version = version + self._script = script + + @property + def name(self) -> str: + return self._name + + @property + def version(self) -> str: + return self._version + + @property + def script(self) -> str: + return self._script diff --git a/bot/src/bot_data/model/migration_history.py b/bot/src/bot_data/model/migration_history.py index 464591bc..fc09df1b 100644 --- a/bot/src/bot_data/model/migration_history.py +++ b/bot/src/bot_data/model/migration_history.py @@ -2,10 +2,12 @@ from cpl_core.database import TableABC class MigrationHistory(TableABC): - def __init__(self, id: str): + def __init__(self, id: str, created_at=None, modified_at=None): self._id = id TableABC.__init__(self) + self._created_at = created_at if created_at is not None else self._created_at + self._modified_at = modified_at if modified_at is not None else self._modified_at @property def migration_id(self) -> str: @@ -39,7 +41,17 @@ class MigrationHistory(TableABC): return str( f""" UPDATE `MigrationHistory` - SET LastModifiedAt` = '{self._modified_at}' + SET `LastModifiedAt` = '{self._modified_at}' + WHERE `MigrationId` = '{self._id}'; + """ + ) + + def change_id_string(self, new_name: str) -> str: + return str( + f""" + UPDATE `MigrationHistory` + SET `LastModifiedAt` = '{self._modified_at}', + `MigrationId` = '{new_name}' WHERE `MigrationId` = '{self._id}'; """ ) diff --git a/bot/src/bot_data/scripts/0.1.0/1_Initial_down.sql b/bot/src/bot_data/scripts/0.1.0/1_Initial_down.sql new file mode 100644 index 00000000..c1c80bab --- /dev/null +++ b/bot/src/bot_data/scripts/0.1.0/1_Initial_down.sql @@ -0,0 +1,12 @@ +DROP TABLE `Servers`; + +DROP TABLE `Users`; + +DROP TABLE `Clients`; + +DROP TABLE `KnownUsers`; + +DROP TABLE `UserJoinedServers`; + +DROP TABLE `UserJoinedVoiceChannel`; + diff --git a/bot/src/bot_data/scripts/0.1.0/1_Initial_up.sql b/bot/src/bot_data/scripts/0.1.0/1_Initial_up.sql new file mode 100644 index 00000000..64575fdc --- /dev/null +++ b/bot/src/bot_data/scripts/0.1.0/1_Initial_up.sql @@ -0,0 +1,80 @@ +CREATE TABLE IF NOT EXISTS `MigrationHistory` +( + `MigrationId` VARCHAR(255), + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + PRIMARY KEY (`MigrationId`) +); + +CREATE TABLE IF NOT EXISTS `Servers` +( + `ServerId` BIGINT NOT NULL AUTO_INCREMENT, + `DiscordServerId` BIGINT NOT NULL, + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + PRIMARY KEY (`ServerId`) +); + +CREATE TABLE IF NOT EXISTS `Users` +( + `UserId` BIGINT NOT NULL AUTO_INCREMENT, + `DiscordId` BIGINT NOT NULL, + `XP` BIGINT NOT NULL DEFAULT 0, + `ServerId` BIGINT, + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + FOREIGN KEY (`ServerId`) REFERENCES Servers (`ServerId`), + PRIMARY KEY (`UserId`) +); + +CREATE TABLE IF NOT EXISTS `Clients` +( + `ClientId` BIGINT NOT NULL AUTO_INCREMENT, + `DiscordClientId` BIGINT NOT NULL, + `SentMessageCount` BIGINT NOT NULL DEFAULT 0, + `ReceivedMessageCount` BIGINT NOT NULL DEFAULT 0, + `DeletedMessageCount` BIGINT NOT NULL DEFAULT 0, + `ReceivedCommandsCount` BIGINT NOT NULL DEFAULT 0, + `MovedUsersCount` BIGINT NOT NULL DEFAULT 0, + `ServerId` BIGINT, + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + FOREIGN KEY (`ServerId`) REFERENCES Servers (`ServerId`), + PRIMARY KEY (`ClientId`) +); + +CREATE TABLE IF NOT EXISTS `KnownUsers` +( + `KnownUserId` BIGINT NOT NULL AUTO_INCREMENT, + `DiscordId` BIGINT NOT NULL, + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + PRIMARY KEY (`KnownUserId`) +); + +CREATE TABLE IF NOT EXISTS `UserJoinedServers` +( + `JoinId` BIGINT NOT NULL AUTO_INCREMENT, + `UserId` BIGINT NOT NULL, + `JoinedOn` DATETIME(6) NOT NULL, + `LeavedOn` DATETIME(6), + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + FOREIGN KEY (`UserId`) REFERENCES Users (`UserId`), + PRIMARY KEY (`JoinId`) +); + +CREATE TABLE IF NOT EXISTS `UserJoinedVoiceChannel` +( + `JoinId` BIGINT NOT NULL AUTO_INCREMENT, + `UserId` BIGINT NOT NULL, + `DiscordChannelId` BIGINT NOT NULL, + `JoinedOn` DATETIME(6) NOT NULL, + `LeavedOn` DATETIME(6), + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + FOREIGN KEY (`UserId`) REFERENCES Users (`UserId`), + PRIMARY KEY (`JoinId`) +); + + diff --git a/bot/src/bot_data/scripts/0.2.2/1_AutoRole_down.sql b/bot/src/bot_data/scripts/0.2.2/1_AutoRole_down.sql new file mode 100644 index 00000000..6e92bfe4 --- /dev/null +++ b/bot/src/bot_data/scripts/0.2.2/1_AutoRole_down.sql @@ -0,0 +1,4 @@ +DROP TABLE `AutoRoleRules`; + + +DROP TABLE `AutoRoles`; diff --git a/bot/src/bot_data/scripts/0.2.2/1_AutoRole_up.sql b/bot/src/bot_data/scripts/0.2.2/1_AutoRole_up.sql new file mode 100644 index 00000000..72737003 --- /dev/null +++ b/bot/src/bot_data/scripts/0.2.2/1_AutoRole_up.sql @@ -0,0 +1,26 @@ +CREATE TABLE IF NOT EXISTS `AutoRoles` +( + `AutoRoleId` BIGINT NOT NULL AUTO_INCREMENT, + `ServerId` BIGINT, + `DiscordMessageId` BIGINT NOT NULL, + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + PRIMARY KEY (`AutoRoleId`), + FOREIGN KEY (`ServerId`) REFERENCES `Servers` (`ServerId`) +); + + + +CREATE TABLE IF NOT EXISTS `AutoRoleRules` +( + `AutoRoleRuleId` BIGINT NOT NULL AUTO_INCREMENT, + `AutoRoleId` BIGINT, + `DiscordEmojiName` VARCHAR(64), + `DiscordRoleId` BIGINT NOT NULL, + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + PRIMARY KEY (`AutoRoleRuleId`), + FOREIGN KEY (`AutoRoleId`) REFERENCES `AutoRoles` (`AutoRoleId`) +); + + diff --git a/bot/src/bot_data/scripts/0.3.0/1_Api_down.sql b/bot/src/bot_data/scripts/0.3.0/1_Api_down.sql new file mode 100644 index 00000000..46021597 --- /dev/null +++ b/bot/src/bot_data/scripts/0.3.0/1_Api_down.sql @@ -0,0 +1,4 @@ +DROP TABLE `AuthUserUsersRelations`; + + +DROP TABLE `AuthUsers`; \ No newline at end of file diff --git a/bot/src/bot_data/scripts/0.3.0/1_Api_up.sql b/bot/src/bot_data/scripts/0.3.0/1_Api_up.sql new file mode 100644 index 00000000..82dbe4ec --- /dev/null +++ b/bot/src/bot_data/scripts/0.3.0/1_Api_up.sql @@ -0,0 +1,34 @@ +CREATE TABLE IF NOT EXISTS `AuthUsers` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `FirstName` VARCHAR(255), + `LastName` VARCHAR(255), + `EMail` VARCHAR(255), + `Password` VARCHAR(255), + `PasswordSalt` VARCHAR(255), + `RefreshToken` VARCHAR(255), + `ConfirmationId` VARCHAR(255) DEFAULT NULL, + `ForgotPasswordId` VARCHAR(255) DEFAULT NULL, + `OAuthId` VARCHAR(255) DEFAULT NULL, + `RefreshTokenExpiryTime` DATETIME(6) NOT NULL, + `AuthRole` INT NOT NULL DEFAULT 0, + `CreatedAt` DATETIME(6) NOT NULL, + `LastModifiedAt` DATETIME(6) NOT NULL, + PRIMARY KEY (`Id`) +); + + + +CREATE TABLE IF NOT EXISTS `AuthUserUsersRelations` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `AuthUserId` BIGINT DEFAULT NULL, + `UserId` BIGINT DEFAULT NULL, + `CreatedAt` DATETIME(6) NOT NULL, + `LastModifiedAt` DATETIME(6) NOT NULL, + PRIMARY KEY (`Id`), + FOREIGN KEY (`AuthUserId`) REFERENCES `AuthUsers` (`Id`), + FOREIGN KEY (`UserId`) REFERENCES `Users` (`UserId`) +); + + diff --git a/bot/src/bot_data/scripts/0.3.0/2_Level_down.sql b/bot/src/bot_data/scripts/0.3.0/2_Level_down.sql new file mode 100644 index 00000000..301478b2 --- /dev/null +++ b/bot/src/bot_data/scripts/0.3.0/2_Level_down.sql @@ -0,0 +1,2 @@ +DROP TABLE `Levels`; + diff --git a/bot/src/bot_data/scripts/0.3.0/2_Level_up.sql b/bot/src/bot_data/scripts/0.3.0/2_Level_up.sql new file mode 100644 index 00000000..8486755a --- /dev/null +++ b/bot/src/bot_data/scripts/0.3.0/2_Level_up.sql @@ -0,0 +1,15 @@ +CREATE TABLE IF NOT EXISTS `Levels` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `Name` VARCHAR(255) NOT NULL, + `Color` VARCHAR(8) NOT NULL, + `MinXp` BIGINT NOT NULL, + `PermissionInt` BIGINT NOT NULL, + `ServerId` BIGINT, + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + PRIMARY KEY (`Id`), + FOREIGN KEY (`ServerId`) REFERENCES `Servers` (`ServerId`) +); + + diff --git a/bot/src/bot_data/scripts/0.3.0/3_Stats_down.sql b/bot/src/bot_data/scripts/0.3.0/3_Stats_down.sql new file mode 100644 index 00000000..36efa156 --- /dev/null +++ b/bot/src/bot_data/scripts/0.3.0/3_Stats_down.sql @@ -0,0 +1,2 @@ +DROP TABLE `Statistics`; + diff --git a/bot/src/bot_data/scripts/0.3.0/3_Stats_up.sql b/bot/src/bot_data/scripts/0.3.0/3_Stats_up.sql new file mode 100644 index 00000000..ffae8aad --- /dev/null +++ b/bot/src/bot_data/scripts/0.3.0/3_Stats_up.sql @@ -0,0 +1,14 @@ +CREATE TABLE IF NOT EXISTS `Statistics` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `Name` VARCHAR(255) NOT NULL, + `Description` VARCHAR(255) NOT NULL, + `Code` LONGTEXT NOT NULL, + `ServerId` BIGINT, + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + PRIMARY KEY (`Id`), + FOREIGN KEY (`ServerId`) REFERENCES `Servers` (`ServerId`) +); + + diff --git a/bot/src/bot_data/scripts/0.3.0/4_AutoRoleFix1_down.sql b/bot/src/bot_data/scripts/0.3.0/4_AutoRoleFix1_down.sql new file mode 100644 index 00000000..bdf0e058 --- /dev/null +++ b/bot/src/bot_data/scripts/0.3.0/4_AutoRoleFix1_down.sql @@ -0,0 +1,4 @@ +ALTER TABLE AutoRoles + DROP COLUMN DiscordChannelId; + + diff --git a/bot/src/bot_data/scripts/0.3.0/4_AutoRoleFix1_up.sql b/bot/src/bot_data/scripts/0.3.0/4_AutoRoleFix1_up.sql new file mode 100644 index 00000000..60745b41 --- /dev/null +++ b/bot/src/bot_data/scripts/0.3.0/4_AutoRoleFix1_up.sql @@ -0,0 +1,4 @@ +ALTER TABLE AutoRoles + ADD DiscordChannelId BIGINT NOT NULL AFTER ServerId; + + diff --git a/bot/src/bot_data/scripts/0.3.1/1_UserMessageCountPerHour_down.sql b/bot/src/bot_data/scripts/0.3.1/1_UserMessageCountPerHour_down.sql new file mode 100644 index 00000000..3de96768 --- /dev/null +++ b/bot/src/bot_data/scripts/0.3.1/1_UserMessageCountPerHour_down.sql @@ -0,0 +1,2 @@ +DROP TABLE `UserMessageCountPerHour`; + diff --git a/bot/src/bot_data/scripts/0.3.1/1_UserMessageCountPerHour_up.sql b/bot/src/bot_data/scripts/0.3.1/1_UserMessageCountPerHour_up.sql new file mode 100644 index 00000000..fd5bf3c4 --- /dev/null +++ b/bot/src/bot_data/scripts/0.3.1/1_UserMessageCountPerHour_up.sql @@ -0,0 +1,14 @@ +CREATE TABLE IF NOT EXISTS `UserMessageCountPerHour` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `Date` DATETIME(6) NOT NULL, + `Hour` BIGINT, + `XPCount` BIGINT, + `UserId` BIGINT, + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + PRIMARY KEY (`Id`), + FOREIGN KEY (`UserId`) REFERENCES `Users` (`UserId`) +); + + diff --git a/bot/src/bot_data/scripts/1.0.0/1_ApiKey_down.sql b/bot/src/bot_data/scripts/1.0.0/1_ApiKey_down.sql new file mode 100644 index 00000000..79fa3b1b --- /dev/null +++ b/bot/src/bot_data/scripts/1.0.0/1_ApiKey_down.sql @@ -0,0 +1,2 @@ +DROP TABLE `ApiKeys`; + diff --git a/bot/src/bot_data/scripts/1.0.0/1_ApiKey_up.sql b/bot/src/bot_data/scripts/1.0.0/1_ApiKey_up.sql new file mode 100644 index 00000000..fd9b504b --- /dev/null +++ b/bot/src/bot_data/scripts/1.0.0/1_ApiKey_up.sql @@ -0,0 +1,15 @@ +CREATE TABLE IF NOT EXISTS `ApiKeys` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `Identifier` VARCHAR(255) NOT NULL, + `Key` VARCHAR(255) NOT NULL, + `CreatorId` BIGINT NULL, + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + PRIMARY KEY (`Id`), + FOREIGN KEY (`CreatorId`) REFERENCES `Users` (`UserId`), + CONSTRAINT UC_Identifier_Key UNIQUE (`Identifier`, `Key`), + CONSTRAINT UC_Key UNIQUE (`Key`) +); + + diff --git a/bot/src/bot_data/scripts/1.0.0/2_UserJoinedGameServer_down.sql b/bot/src/bot_data/scripts/1.0.0/2_UserJoinedGameServer_down.sql new file mode 100644 index 00000000..e630662a --- /dev/null +++ b/bot/src/bot_data/scripts/1.0.0/2_UserJoinedGameServer_down.sql @@ -0,0 +1,8 @@ +DROP TABLE `UserJoinedGameServer`; + + +DROP TABLE `UserGameIdents`; + + +DROP TABLE `GameServers`; + diff --git a/bot/src/bot_data/scripts/1.0.0/2_UserJoinedGameServer_up.sql b/bot/src/bot_data/scripts/1.0.0/2_UserJoinedGameServer_up.sql new file mode 100644 index 00000000..31f3f13d --- /dev/null +++ b/bot/src/bot_data/scripts/1.0.0/2_UserJoinedGameServer_up.sql @@ -0,0 +1,46 @@ +CREATE TABLE IF NOT EXISTS `GameServers` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `Name` VARCHAR(255) NOT NULL, + `ServerId` BIGINT NOT NULL, + `ApiKeyId` BIGINT NOT NULL, + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + FOREIGN KEY (`ServerId`) REFERENCES Servers (`ServerId`), + FOREIGN KEY (`ApiKeyId`) REFERENCES ApiKeys (`Id`), + PRIMARY KEY (`Id`) +); + + + +CREATE TABLE IF NOT EXISTS `UserJoinedGameServer` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `UserId` BIGINT NOT NULL, + `GameServerId` BIGINT NOT NULL, + `JoinedOn` DATETIME(6) NOT NULL, + `LeavedOn` DATETIME(6), + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + FOREIGN KEY (`UserId`) REFERENCES Users (`UserId`), + FOREIGN KEY (`GameServerId`) REFERENCES GameServers (`Id`), + PRIMARY KEY (`Id`) +); + + + +CREATE TABLE IF NOT EXISTS `UserGameIdents` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `UserId` BIGINT NOT NULL, + `GameServerId` BIGINT NOT NULL, + `Ident` VARCHAR(255) NOT NULL, + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + FOREIGN KEY (`UserId`) REFERENCES Users (`UserId`), + FOREIGN KEY (`GameServerId`) REFERENCES GameServers (`Id`), + CONSTRAINT UC_UserGameIdent UNIQUE (`GameServerId`, `Ident`), + PRIMARY KEY (`Id`) +); + + diff --git a/bot/src/bot_data/scripts/1.0.0/3_RemoveStats_down.sql b/bot/src/bot_data/scripts/1.0.0/3_RemoveStats_down.sql new file mode 100644 index 00000000..ffae8aad --- /dev/null +++ b/bot/src/bot_data/scripts/1.0.0/3_RemoveStats_down.sql @@ -0,0 +1,14 @@ +CREATE TABLE IF NOT EXISTS `Statistics` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `Name` VARCHAR(255) NOT NULL, + `Description` VARCHAR(255) NOT NULL, + `Code` LONGTEXT NOT NULL, + `ServerId` BIGINT, + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + PRIMARY KEY (`Id`), + FOREIGN KEY (`ServerId`) REFERENCES `Servers` (`ServerId`) +); + + diff --git a/bot/src/bot_data/scripts/1.0.0/3_RemoveStats_up.sql b/bot/src/bot_data/scripts/1.0.0/3_RemoveStats_up.sql new file mode 100644 index 00000000..19a95459 --- /dev/null +++ b/bot/src/bot_data/scripts/1.0.0/3_RemoveStats_up.sql @@ -0,0 +1,3 @@ +DROP TABLE IF EXISTS `Statistics`; + + diff --git a/bot/src/bot_data/scripts/1.0.0/4_UserWarning_down.sql b/bot/src/bot_data/scripts/1.0.0/4_UserWarning_down.sql new file mode 100644 index 00000000..13d2cfbd --- /dev/null +++ b/bot/src/bot_data/scripts/1.0.0/4_UserWarning_down.sql @@ -0,0 +1,2 @@ +DROP TABLE `UserWarnings`; + diff --git a/bot/src/bot_data/scripts/1.0.0/4_UserWarning_up.sql b/bot/src/bot_data/scripts/1.0.0/4_UserWarning_up.sql new file mode 100644 index 00000000..29269106 --- /dev/null +++ b/bot/src/bot_data/scripts/1.0.0/4_UserWarning_up.sql @@ -0,0 +1,14 @@ +CREATE TABLE IF NOT EXISTS `UserWarnings` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `Description` VARCHAR(255) NOT NULL, + `UserId` BIGINT NOT NULL, + `Author` BIGINT NULL, + `CreatedAt` DATETIME(6), + `LastModifiedAt` DATETIME(6), + PRIMARY KEY (`Id`), + FOREIGN KEY (`UserId`) REFERENCES `Users` (`UserId`), + FOREIGN KEY (`Author`) REFERENCES `Users` (`UserId`) +); + + diff --git a/bot/src/bot_data/scripts/1.0.0/5_DBHistory_down.sql b/bot/src/bot_data/scripts/1.0.0/5_DBHistory_down.sql new file mode 100644 index 00000000..ff1cdc17 --- /dev/null +++ b/bot/src/bot_data/scripts/1.0.0/5_DBHistory_down.sql @@ -0,0 +1,34 @@ +DROP TABLE `ApiKeysHistory`; + +DROP TABLE `AuthUsersHistory`; + +DROP TABLE `AuthUserUsersRelationsHistory`; + +DROP TABLE `AutoRoleRulesHistory`; + +DROP TABLE `AutoRolesHistory`; + +DROP TABLE `ClientsHistory`; + +DROP TABLE `GameServersHistory`; + +DROP TABLE `KnownUsersHistory`; + +DROP TABLE `LevelsHistory`; + +DROP TABLE `ServersHistory`; + +DROP TABLE `UserGameIdentsHistory`; + +DROP TABLE `UserJoinedGameServerHistory`; + +DROP TABLE `UserJoinedServersHistory`; + +DROP TABLE `UserJoinedVoiceChannelHistory`; + +DROP TABLE `UserMessageCountPerHourHistory`; + +DROP TABLE `UsersHistory`; + +DROP TABLE `UserWarningsHistory`; + diff --git a/bot/src/bot_data/scripts/1.0.0/5_DBHistory_up.sql b/bot/src/bot_data/scripts/1.0.0/5_DBHistory_up.sql new file mode 100644 index 00000000..76087c03 --- /dev/null +++ b/bot/src/bot_data/scripts/1.0.0/5_DBHistory_up.sql @@ -0,0 +1,711 @@ +ALTER TABLE `ApiKeys` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `ApiKeys` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +CREATE TABLE IF NOT EXISTS `ApiKeysHistory` +( + `Id` BIGINT(20) NOT NULL, + `Identifier` VARCHAR(255) NOT NULL, + `Key` VARCHAR(255) NOT NULL, + `CreatorId` BIGINT(20) DEFAULT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_ApiKeysUpdate`;; + +CREATE TRIGGER `TR_ApiKeysUpdate` + AFTER UPDATE + ON `ApiKeys` + FOR EACH ROW +BEGIN + INSERT INTO `ApiKeysHistory` (`Id`, `Identifier`, `Key`, `CreatorId`, `DateFrom`, `DateTo`) + VALUES (OLD.Id, OLD.Identifier, OLD.Key, OLD.CreatorId, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_ApiKeysDelete`;; + +CREATE TRIGGER `TR_ApiKeysDelete` + AFTER DELETE + ON `ApiKeys` + FOR EACH ROW +BEGIN + INSERT INTO `ApiKeysHistory` (`Id`, `Identifier`, `Key`, `CreatorId`, `Deleted`, `DateFrom`, `DateTo`) + VALUES (OLD.Id, OLD.Identifier, OLD.Key, OLD.CreatorId, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +ALTER TABLE `AuthUsers` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `AuthUsers` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +CREATE TABLE IF NOT EXISTS `AuthUsersHistory` +( + `Id` BIGINT(20) NOT NULL, + `FirstName` VARCHAR(255) DEFAULT NULL, + `LastName` VARCHAR(255) DEFAULT NULL, + `EMail` VARCHAR(255) DEFAULT NULL, + `Password` VARCHAR(255) DEFAULT NULL, + `PasswordSalt` VARCHAR(255) DEFAULT NULL, + `RefreshToken` VARCHAR(255) DEFAULT NULL, + `ConfirmationId` VARCHAR(255) DEFAULT NULL, + `ForgotPasswordId` VARCHAR(255) DEFAULT NULL, + `OAuthId` VARCHAR(255) DEFAULT NULL, + `RefreshTokenExpiryTime` DATETIME(6) NOT NULL, + `AuthRole` BIGINT(11) NOT NULL DEFAULT 0, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_AuthUsersUpdate`;; + +CREATE TRIGGER `TR_AuthUsersUpdate` + AFTER UPDATE + ON `AuthUsers` + FOR EACH ROW +BEGIN + INSERT INTO `AuthUsersHistory` (`Id`, `FirstName`, `LastName`, `EMail`, `Password`, `PasswordSalt`, + `RefreshToken`, `ConfirmationId`, `ForgotPasswordId`, `OAuthId`, + `RefreshTokenExpiryTime`, `AuthRole`, `DateFrom`, `DateTo`) + VALUES (OLD.Id, OLD.FirstName, OLD.LastName, OLD.EMail, OLD.Password, OLD.PasswordSalt, OLD.RefreshToken, + OLD.ConfirmationId, OLD.ForgotPasswordId, OLD.OAuthId, OLD.RefreshTokenExpiryTime, OLD.AuthRole, + OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_AuthUsersDelete`;; + +CREATE TRIGGER `TR_AuthUsersDelete` + AFTER DELETE + ON `AuthUsers` + FOR EACH ROW +BEGIN + INSERT INTO `AuthUsersHistory` (`Id`, `FirstName`, `LastName`, `EMail`, `Password`, `PasswordSalt`, `RefreshToken`, + `ConfirmationId`, `ForgotPasswordId`, `OAuthId`, `RefreshTokenExpiryTime`, + `AuthRole`, `Deleted`, `DateFrom`, `DateTo`) + VALUES (OLD.Id, OLD.FirstName, OLD.LastName, OLD.EMail, OLD.Password, OLD.PasswordSalt, OLD.RefreshToken, + OLD.ConfirmationId, OLD.ForgotPasswordId, OLD.OAuthId, OLD.RefreshTokenExpiryTime, OLD.AuthRole, TRUE, + OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +ALTER TABLE `AuthUserUsersRelations` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `AuthUserUsersRelations` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + + +CREATE TABLE IF NOT EXISTS `AuthUserUsersRelationsHistory` +( + `Id` BIGINT(20) NOT NULL, + `AuthUserId` BIGINT(20) DEFAULT NULL, + `UserId` BIGINT(20) DEFAULT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_AuthUserUsersRelationsUpdate`;; + +CREATE TRIGGER `TR_AuthUserUsersRelationsUpdate` + AFTER UPDATE + ON `AuthUserUsersRelations` + FOR EACH ROW +BEGIN + INSERT INTO `AuthUserUsersRelationsHistory` (`Id`, `AuthUserId`, `UserId`, `DateFrom`, `DateTo`) + VALUES (OLD.Id, OLD.AuthUserId, OLD.UserId, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_AuthUserUsersRelationsDelete`;; + +CREATE TRIGGER `TR_AuthUserUsersRelationsDelete` + AFTER DELETE + ON `AuthUserUsersRelations` + FOR EACH ROW +BEGIN + INSERT INTO `AuthUserUsersRelationsHistory` (`Id`, `AuthUserId`, `UserId`, `Deleted`, `DateFrom`, `DateTo`) + VALUES (OLD.Id, OLD.AuthUserId, OLD.UserId, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +ALTER TABLE `AutoRoleRules` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `AutoRoleRules` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +CREATE TABLE IF NOT EXISTS `AutoRoleRulesHistory` +( + `Id` BIGINT(20) NOT NULL, + `AutoRoleId` BIGINT(20) DEFAULT NULL, + `DiscordEmojiName` VARCHAR(64) DEFAULT NULL, + `DiscordRoleId` BIGINT(20) NOT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_AutoRoleRulesUpdate`;; + +CREATE TRIGGER `TR_AutoRoleRulesUpdate` + AFTER UPDATE + ON `AutoRoleRules` + FOR EACH ROW +BEGIN + INSERT INTO `AutoRoleRulesHistory` (`Id`, `AutoRoleId`, `DiscordEmojiName`, `DiscordRoleId`, `DateFrom`, `DateTo`) + VALUES (OLD.AutoRoleRuleId, OLD.AutoRoleId, OLD.DiscordEmojiName, OLD.DiscordRoleId, OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_AutoRoleRulesDelete`;; + +CREATE TRIGGER `TR_AutoRoleRulesDelete` + AFTER DELETE + ON `AutoRoleRules` + FOR EACH ROW +BEGIN + INSERT INTO `AutoRoleRulesHistory` (`Id`, `AutoRoleId`, `DiscordEmojiName`, `DiscordRoleId`, `Deleted`, `DateFrom`, + `DateTo`) + VALUES (OLD.AutoRoleRuleId, OLD.AutoRoleId, OLD.DiscordEmojiName, OLD.DiscordRoleId, TRUE, OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +ALTER TABLE `AutoRoles` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `AutoRoles` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +CREATE TABLE IF NOT EXISTS `AutoRolesHistory` +( + `Id` BIGINT(20) NOT NULL, + `ServerId` BIGINT(20) DEFAULT NULL, + `DiscordChannelId` BIGINT(20) NOT NULL, + `DiscordMessageId` BIGINT(20) NOT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_AutoRolesUpdate`;; + +CREATE TRIGGER `TR_AutoRolesUpdate` + AFTER UPDATE + ON `AutoRoles` + FOR EACH ROW +BEGIN + INSERT INTO `AutoRolesHistory` (`Id`, `ServerId`, `DiscordChannelId`, `DiscordMessageId`, `DateFrom`, `DateTo`) + VALUES (OLD.AutoRoleId, OLD.ServerId, OLD.DiscordChannelId, OLD.DiscordMessageId, OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_AutoRolesDelete`;; + +CREATE TRIGGER `TR_AutoRolesDelete` + AFTER DELETE + ON `AutoRoles` + FOR EACH ROW +BEGIN + INSERT INTO `AutoRolesHistory` (`Id`, `ServerId`, `DiscordChannelId`, `DiscordMessageId`, `Deleted`, `DateFrom`, + `DateTo`) + VALUES (OLD.AutoRoleId, OLD.ServerId, OLD.DiscordChannelId, OLD.DiscordMessageId, TRUE, OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +ALTER TABLE `Clients` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `Clients` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +CREATE TABLE IF NOT EXISTS `ClientsHistory` +( + `Id` BIGINT(20) NOT NULL, + `DiscordId` BIGINT(20) NOT NULL, + `SentMessageCount` BIGINT(20) NOT NULL DEFAULT 0, + `ReceivedMessageCount` BIGINT(20) NOT NULL DEFAULT 0, + `DeletedMessageCount` BIGINT(20) NOT NULL DEFAULT 0, + `ReceivedCommandsCount` BIGINT(20) NOT NULL DEFAULT 0, + `MovedUsersCount` BIGINT(20) NOT NULL DEFAULT 0, + `ServerId` BIGINT(20) DEFAULT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_ClientsUpdate`;; + +CREATE TRIGGER `TR_ClientsUpdate` + AFTER UPDATE + ON `Clients` + FOR EACH ROW +BEGIN + INSERT INTO `ClientsHistory` (`Id`, `DiscordId`, `SentMessageCount`, `ReceivedMessageCount`, `DeletedMessageCount`, + `ReceivedCommandsCount`, `MovedUsersCount`, `ServerId`, `DateFrom`, `DateTo`) + VALUES (OLD.ClientId, OLD.DiscordClientId, OLD.SentMessageCount, OLD.ReceivedMessageCount, OLD.DeletedMessageCount, + OLD.ReceivedCommandsCount, OLD.MovedUsersCount, OLD.ServerId, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_ClientsDelete`;; + +CREATE TRIGGER `TR_ClientsDelete` + AFTER DELETE + ON `Clients` + FOR EACH ROW +BEGIN + INSERT INTO `ClientsHistory` (`Id`, `DiscordId`, `SentMessageCount`, `ReceivedMessageCount`, `DeletedMessageCount`, + `ReceivedCommandsCount`, `MovedUsersCount`, `ServerId`, `Deleted`, `DateFrom`, + `DateTo`) + VALUES (OLD.ClientId, OLD.DiscordClientId, OLD.SentMessageCount, OLD.ReceivedMessageCount, OLD.DeletedMessageCount, + OLD.ReceivedCommandsCount, OLD.MovedUsersCount, OLD.ServerId, TRUE, OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +ALTER TABLE `GameServers` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `GameServers` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +CREATE TABLE IF NOT EXISTS `GameServersHistory` +( + `Id` BIGINT(20) NOT NULL, + `Name` VARCHAR(255) NOT NULL, + `ServerId` BIGINT(20) NOT NULL, + `ApiKeyId` BIGINT(20) NOT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_GameServersUpdate`;; + +CREATE TRIGGER `TR_GameServersUpdate` + AFTER UPDATE + ON `GameServers` + FOR EACH ROW +BEGIN + INSERT INTO `GameServersHistory` (`Id`, `Name`, `ServerId`, `ApiKeyId`, `DateFrom`, `DateTo`) + VALUES (OLD.Id, OLD.Name, OLD.ServerId, OLD.ApiKeyId, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_GameServersDelete`;; + +CREATE TRIGGER `TR_GameServersDelete` + AFTER DELETE + ON `GameServers` + FOR EACH ROW +BEGIN + INSERT INTO `GameServersHistory` (`Id`, `Name`, `ServerId`, `ApiKeyId`, `Deleted`, `DateFrom`, `DateTo`) + VALUES (OLD.Id, OLD.Name, OLD.ServerId, OLD.ApiKeyId, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +ALTER TABLE `KnownUsers` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `KnownUsers` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +CREATE TABLE IF NOT EXISTS `KnownUsersHistory` +( + `Id` BIGINT(20) NOT NULL, + `DiscordId` BIGINT(20) NOT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_KnownUsersUpdate`;; + +CREATE TRIGGER `TR_KnownUsersUpdate` + AFTER UPDATE + ON `KnownUsers` + FOR EACH ROW +BEGIN + INSERT INTO `KnownUsersHistory` (`Id`, `DiscordId`, `DateFrom`, `DateTo`) + VALUES (OLD.KnownUserId, OLD.DiscordId, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_KnownUsersDelete`;; + +CREATE TRIGGER `TR_KnownUsersDelete` + AFTER DELETE + ON `KnownUsers` + FOR EACH ROW +BEGIN + INSERT INTO `KnownUsersHistory` (`Id`, `DiscordId`, `Deleted`, `DateFrom`, `DateTo`) + VALUES (OLD.KnownUserId, OLD.DiscordId, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +ALTER TABLE `Levels` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `Levels` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +CREATE TABLE IF NOT EXISTS `LevelsHistory` +( + `Id` BIGINT(20) NOT NULL, + `Name` VARCHAR(255) NOT NULL, + `Color` VARCHAR(8) NOT NULL, + `MinXp` BIGINT(20) NOT NULL, + `PermissionInt` BIGINT(20) NOT NULL, + `ServerId` BIGINT(20) DEFAULT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_LevelsUpdate`;; + +CREATE TRIGGER `TR_LevelsUpdate` + AFTER UPDATE + ON `Levels` + FOR EACH ROW +BEGIN + INSERT INTO `LevelsHistory` (`Id`, `Name`, `Color`, `MinXp`, `PermissionInt`, `ServerId`, `DateFrom`, `DateTo`) + VALUES (OLD.Id, OLD.Name, OLD.Color, OLD.MinXp, OLD.PermissionInt, OLD.ServerId, OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_LevelsDelete`;; + +CREATE TRIGGER `TR_LevelsDelete` + AFTER DELETE + ON `Levels` + FOR EACH ROW +BEGIN + INSERT INTO `LevelsHistory` (`Id`, `Name`, `Color`, `MinXp`, `PermissionInt`, `ServerId`, `Deleted`, `DateFrom`, + `DateTo`) + VALUES (OLD.Id, OLD.Name, OLD.Color, OLD.MinXp, OLD.PermissionInt, OLD.ServerId, TRUE, OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +ALTER TABLE `Servers` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `Servers` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +CREATE TABLE IF NOT EXISTS `ServersHistory` +( + `Id` BIGINT(20) NOT NULL, + `DiscordId` BIGINT(20) NOT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_ServersUpdate`;; + +CREATE TRIGGER `TR_ServersUpdate` + AFTER UPDATE + ON `Servers` + FOR EACH ROW +BEGIN + INSERT INTO `ServersHistory` (`Id`, `DiscordId`, `DateFrom`, `DateTo`) + VALUES (OLD.ServerId, OLD.DiscordServerId, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_ServersDelete`;; + +CREATE TRIGGER `TR_ServersDelete` + AFTER DELETE + ON `Servers` + FOR EACH ROW +BEGIN + INSERT INTO `ServersHistory` (`Id`, `DiscordId`, `Deleted`, `DateFrom`, `DateTo`) + VALUES (OLD.ServerId, OLD.DiscordServerId, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +ALTER TABLE `UserGameIdents` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `UserGameIdents` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +CREATE TABLE IF NOT EXISTS `UserGameIdentsHistory` +( + `Id` BIGINT(20) NOT NULL, + `UserId` BIGINT(20) NOT NULL, + `GameServerId` BIGINT(20) NOT NULL, + `Ident` VARCHAR(255) NOT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_UserGameIdentsUpdate`;; + +CREATE TRIGGER `TR_UserGameIdentsUpdate` + AFTER UPDATE + ON `UserGameIdents` + FOR EACH ROW +BEGIN + INSERT INTO `UserGameIdentsHistory` (`Id`, `UserId`, `GameServerId`, `Ident`, `DateFrom`, `DateTo`) + VALUES (OLD.Id, OLD.UserId, OLD.GameServerId, OLD.Ident, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_UserGameIdentsDelete`;; + +CREATE TRIGGER `TR_UserGameIdentsDelete` + AFTER DELETE + ON `UserGameIdents` + FOR EACH ROW +BEGIN + INSERT INTO `UserGameIdentsHistory` (`Id`, `UserId`, `GameServerId`, `Ident`, `Deleted`, `DateFrom`, `DateTo`) + VALUES (OLD.Id, OLD.UserId, OLD.GameServerId, OLD.Ident, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +ALTER TABLE `UserJoinedGameServer` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `UserJoinedGameServer` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +CREATE TABLE IF NOT EXISTS `UserJoinedGameServerHistory` +( + `Id` BIGINT(20) NOT NULL, + `UserId` BIGINT(20) NOT NULL, + `GameServerId` BIGINT(20) NOT NULL, + `JoinedOn` DATETIME(6) NOT NULL, + `LeavedOn` DATETIME(6) DEFAULT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_UserJoinedGameServerUpdate`;; + +CREATE TRIGGER `TR_UserJoinedGameServerUpdate` + AFTER UPDATE + ON `UserJoinedGameServer` + FOR EACH ROW +BEGIN + INSERT INTO `UserJoinedGameServerHistory` (`Id`, `UserId`, `GameServerId`, `JoinedOn`, `LeavedOn`, `DateFrom`, + `DateTo`) + VALUES (OLD.Id, OLD.UserId, OLD.GameServerId, OLD.JoinedOn, OLD.LeavedOn, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_UserJoinedGameServerDelete`;; + +CREATE TRIGGER `TR_UserJoinedGameServerDelete` + AFTER DELETE + ON `UserJoinedGameServer` + FOR EACH ROW +BEGIN + INSERT INTO `UserJoinedGameServerHistory` (`Id`, `UserId`, `GameServerId`, `JoinedOn`, `LeavedOn`, `Deleted`, + `DateFrom`, `DateTo`) + VALUES (OLD.Id, OLD.UserId, OLD.GameServerId, OLD.JoinedOn, OLD.LeavedOn, TRUE, OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +ALTER TABLE `UserJoinedServers` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `UserJoinedServers` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +CREATE TABLE IF NOT EXISTS `UserJoinedServersHistory` +( + `Id` BIGINT(20) NOT NULL, + `UserId` BIGINT(20) NOT NULL, + `JoinedOn` DATETIME(6) NOT NULL, + `LeavedOn` DATETIME(6) DEFAULT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_UserJoinedServersUpdate`;; + +CREATE TRIGGER `TR_UserJoinedServersUpdate` + AFTER UPDATE + ON `UserJoinedServers` + FOR EACH ROW +BEGIN + INSERT INTO `UserJoinedServersHistory` (`Id`, `UserId`, `JoinedOn`, `LeavedOn`, `DateFrom`, `DateTo`) + VALUES (OLD.JoinId, OLD.UserId, OLD.JoinedOn, OLD.LeavedOn, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_UserJoinedServersDelete`;; + +CREATE TRIGGER `TR_UserJoinedServersDelete` + AFTER DELETE + ON `UserJoinedServers` + FOR EACH ROW +BEGIN + INSERT INTO `UserJoinedServersHistory` (`Id`, `UserId`, `JoinedOn`, `LeavedOn`, `Deleted`, `DateFrom`, `DateTo`) + VALUES (OLD.JoinId, OLD.UserId, OLD.JoinedOn, OLD.LeavedOn, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +ALTER TABLE `UserJoinedVoiceChannel` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `UserJoinedVoiceChannel` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +CREATE TABLE IF NOT EXISTS `UserJoinedVoiceChannelHistory` +( + `Id` BIGINT(20) NOT NULL, + `UserId` BIGINT(20) NOT NULL, + `DiscordChannelId` BIGINT(20) NOT NULL, + `JoinedOn` DATETIME(6) NOT NULL, + `LeavedOn` DATETIME(6) DEFAULT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_UserJoinedVoiceChannelUpdate`;; + +CREATE TRIGGER `TR_UserJoinedVoiceChannelUpdate` + AFTER UPDATE + ON `UserJoinedVoiceChannel` + FOR EACH ROW +BEGIN + INSERT INTO `UserJoinedVoiceChannelHistory` (`Id`, `UserId`, `DiscordChannelId`, `JoinedOn`, `LeavedOn`, `DateFrom`, + `DateTo`) + VALUES (OLD.JoinId, OLD.UserId, OLD.DiscordChannelId, OLD.JoinedOn, OLD.LeavedOn, OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_UserJoinedVoiceChannelDelete`;; + +CREATE TRIGGER `TR_UserJoinedVoiceChannelDelete` + AFTER DELETE + ON `UserJoinedVoiceChannel` + FOR EACH ROW +BEGIN + INSERT INTO `UserJoinedVoiceChannelHistory` (`Id`, `UserId`, `DiscordChannelId`, `JoinedOn`, `LeavedOn`, `Deleted`, + `DateFrom`, `DateTo`) + VALUES (OLD.JoinId, OLD.UserId, OLD.DiscordChannelId, OLD.JoinedOn, OLD.LeavedOn, TRUE, OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +ALTER TABLE `UserMessageCountPerHour` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `UserMessageCountPerHour` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +CREATE TABLE IF NOT EXISTS `UserMessageCountPerHourHistory` +( + `Id` BIGINT(20) NOT NULL, + `Date` DATETIME(6) NOT NULL, + `Hour` BIGINT(20) DEFAULT NULL, + `XPCount` BIGINT(20) DEFAULT NULL, + `UserId` BIGINT(20) DEFAULT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_UserMessageCountPerHourUpdate`;; + +CREATE TRIGGER `TR_UserMessageCountPerHourUpdate` + AFTER UPDATE + ON `UserMessageCountPerHour` + FOR EACH ROW +BEGIN + INSERT INTO `UserMessageCountPerHourHistory` (`Id`, `UserId`, `Date`, `Hour`, `XPCount`, `DateFrom`, `DateTo`) + VALUES (OLD.Id, OLD.UserId, OLD.Date, OLD.Hour, OLD.XPCount, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_UserMessageCountPerHourDelete`;; + +CREATE TRIGGER `TR_UserMessageCountPerHourDelete` + AFTER DELETE + ON `UserMessageCountPerHour` + FOR EACH ROW +BEGIN + INSERT INTO `UserMessageCountPerHourHistory` (`Id`, `UserId`, `Date`, `Hour`, `XPCount`, `Deleted`, `DateFrom`, + `DateTo`) + VALUES (OLD.Id, OLD.UserId, OLD.Date, OLD.Hour, OLD.XPCount, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +ALTER TABLE `Users` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `Users` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +CREATE TABLE IF NOT EXISTS `UsersHistory` +( + `Id` BIGINT(20) NOT NULL, + `DiscordId` BIGINT(20) NOT NULL, + `XP` BIGINT(20) NOT NULL DEFAULT 0, + `ServerId` BIGINT(20) DEFAULT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_UsersUpdate`;; + +CREATE TRIGGER `TR_UsersUpdate` + AFTER UPDATE + ON `Users` + FOR EACH ROW +BEGIN + INSERT INTO `UsersHistory` (`Id`, `DiscordId`, `XP`, `ServerId`, + `DateFrom`, `DateTo`) + VALUES (OLD.UserId, OLD.DiscordId, OLD.XP, OLD.ServerId, + OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_UsersDelete`;; + +CREATE TRIGGER `TR_UsersDelete` + AFTER DELETE + ON `Users` + FOR EACH ROW +BEGIN + INSERT INTO `UsersHistory` (`Id`, `DiscordId`, `XP`, `ServerId`, + `Deleted`, `DateFrom`, `DateTo`) + VALUES (OLD.UserId, OLD.DiscordId, OLD.XP, OLD.ServerId, TRUE, + OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +ALTER TABLE `UserWarnings` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `UserWarnings` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +CREATE TABLE IF NOT EXISTS `UserWarningsHistory` +( + `Id` BIGINT(20) NOT NULL, + `Description` VARCHAR(255) NOT NULL, + `UserId` BIGINT(20) NOT NULL, + `Author` BIGINT(20) DEFAULT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_UserWarningsUpdate`;; + +CREATE TRIGGER `TR_UserWarningsUpdate` + AFTER UPDATE + ON `UserWarnings` + FOR EACH ROW +BEGIN + INSERT INTO `UserWarningsHistory` (`Id`, `Description`, `UserId`, `Author`, `DateFrom`, `DateTo`) + VALUES (OLD.Id, OLD.Description, OLD.UserId, OLD.Author, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_UserWarningsDelete`;; + +CREATE TRIGGER `TR_UserWarningsDelete` + AFTER DELETE + ON `UserWarnings` + FOR EACH ROW +BEGIN + INSERT INTO `UserWarningsHistory` (`Id`, `Description`, `UserId`, `Author`, `Deleted`, `DateFrom`, `DateTo`) + VALUES (OLD.Id, OLD.Description, OLD.UserId, OLD.Author, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + diff --git a/bot/src/bot_data/scripts/1.1.0/1_Achievements_down.sql b/bot/src/bot_data/scripts/1.1.0/1_Achievements_down.sql new file mode 100644 index 00000000..ffdb52a3 --- /dev/null +++ b/bot/src/bot_data/scripts/1.1.0/1_Achievements_down.sql @@ -0,0 +1,10 @@ +DROP TABLE `UserGotAchievements`; + +DROP TABLE `Achievements`; + +ALTER TABLE Users DROP COLUMN MessageCount; + +ALTER TABLE Users DROP COLUMN ReactionCount; + +DROP TABLE `AchievementsHistory`; + diff --git a/bot/src/bot_data/scripts/1.1.0/1_Achievements_up.sql b/bot/src/bot_data/scripts/1.1.0/1_Achievements_up.sql new file mode 100644 index 00000000..9ee7e25b --- /dev/null +++ b/bot/src/bot_data/scripts/1.1.0/1_Achievements_up.sql @@ -0,0 +1,88 @@ +CREATE TABLE IF NOT EXISTS `Achievements` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `Name` VARCHAR(255) NOT NULL, + `Description` VARCHAR(255) NOT NULL, + `Attribute` VARCHAR(255) NOT NULL, + `Operator` VARCHAR(255) NOT NULL, + `Value` VARCHAR(255) NOT NULL, + `ServerId` BIGINT, + `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), + `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), + PRIMARY KEY (`Id`), + FOREIGN KEY (`ServerId`) REFERENCES `Servers` (`ServerId`) +); + + + +CREATE TABLE IF NOT EXISTS `AchievementsHistory` +( + `Id` BIGINT(20) NOT NULL, + `Name` VARCHAR(255) NOT NULL, + `Description` VARCHAR(255) NOT NULL, + `Attribute` VARCHAR(255) NOT NULL, + `Operator` VARCHAR(255) NOT NULL, + `Value` VARCHAR(255) NOT NULL, + `ServerId` BIGINT, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +); + + + +CREATE TABLE IF NOT EXISTS `UserGotAchievements` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `UserId` BIGINT, + `AchievementId` BIGINT, + `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), + `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), + PRIMARY KEY (`Id`), + FOREIGN KEY (`UserId`) REFERENCES `Users` (`UserId`), + FOREIGN KEY (`AchievementId`) REFERENCES `Achievements` (`Id`) +); + + +ALTER TABLE Users + ADD MessageCount BIGINT NOT NULL DEFAULT 0 AFTER XP; + +ALTER TABLE Users + ADD ReactionCount BIGINT NOT NULL DEFAULT 0 AFTER XP; + +ALTER TABLE UsersHistory + ADD MessageCount BIGINT NOT NULL DEFAULT 0 AFTER XP; + +ALTER TABLE UsersHistory + ADD ReactionCount BIGINT NOT NULL DEFAULT 0 AFTER XP; + +DROP TRIGGER IF EXISTS `TR_AchievementsUpdate`; + + +CREATE TRIGGER `TR_AchievementsUpdate` + AFTER UPDATE + ON `Achievements` + FOR EACH ROW +BEGIN + INSERT INTO `AchievementsHistory` (`Id`, `Name`, `Description`, `Attribute`, `Operator`, `Value`, `ServerId`, + `DateFrom`, `DateTo`) + VALUES (OLD.Id, OLD.Name, OLD.Description, OLD.Attribute, OLD.Operator, OLD.Value, OLD.ServerId, OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END; + + +DROP TRIGGER IF EXISTS `TR_AchievementsDelete`; + + +CREATE TRIGGER `TR_AchievementsDelete` + AFTER DELETE + ON `Achievements` + FOR EACH ROW +BEGIN + INSERT INTO `AchievementsHistory` (`Id`, `Name`, `Description`, `Attribute`, `Operator`, `Value`, `ServerId`, + `Deleted`, `DateFrom`, `DateTo`) + VALUES (OLD.Id, OLD.Name, OLD.Description, OLD.Attribute, OLD.Operator, OLD.Value, OLD.ServerId, TRUE, + OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END; + + diff --git a/bot/src/bot_data/scripts/1.1.0/2_Config_down.sql b/bot/src/bot_data/scripts/1.1.0/2_Config_down.sql new file mode 100644 index 00000000..d774b897 --- /dev/null +++ b/bot/src/bot_data/scripts/1.1.0/2_Config_down.sql @@ -0,0 +1,24 @@ +DROP TABLE `CFG_ServerTeamRoleIds`; + +DROP TABLE `CFG_ServerTeamRoleIdsHistory`; + +DROP TABLE `CFG_ServerAFKChannelIds`; + +DROP TABLE `CFG_ServerAFKChannelIdsHistory`; + +DROP TABLE `CFG_Server`; + +DROP TABLE `CFG_ServerHistory`; + +DROP TABLE `CFG_TechnicianPingUrls`; + +DROP TABLE `CFG_TechnicianPingUrlsHistory`; + +DROP TABLE `CFG_TechnicianIds`; + +DROP TABLE `CFG_TechnicianIdsHistory`; + +DROP TABLE `CFG_Technician`; + +DROP TABLE `CFG_TechnicianHistory`; + diff --git a/bot/src/bot_data/scripts/1.1.0/2_Config_up.sql b/bot/src/bot_data/scripts/1.1.0/2_Config_up.sql new file mode 100644 index 00000000..d922bdb8 --- /dev/null +++ b/bot/src/bot_data/scripts/1.1.0/2_Config_up.sql @@ -0,0 +1,452 @@ +CREATE TABLE IF NOT EXISTS `CFG_Server` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `MessageDeleteTimer` BIGINT NOT NULL DEFAULT 6, + `NotificationChatId` BIGINT NOT NULL, + `MaxVoiceStateHours` BIGINT NOT NULL DEFAULT 6, + `XpPerMessage` BIGINT NOT NULL DEFAULT 1, + `XpPerReaction` BIGINT NOT NULL DEFAULT 1, + `MaxMessageXpPerHour` BIGINT NOT NULL DEFAULT 20, + `XpPerOntimeHour` BIGINT NOT NULL DEFAULT 10, + `XpPerEventParticipation` BIGINT NOT NULL DEFAULT 10, + `XpPerAchievement` BIGINT NOT NULL DEFAULT 10, + `AFKCommandChannelId` BIGINT NOT NULL, + `HelpVoiceChannelId` BIGINT NOT NULL, + `TeamChannelId` BIGINT NOT NULL, + `LoginMessageChannelId` BIGINT NOT NULL, + `ServerId` BIGINT NOT NULL, + `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), + `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), + PRIMARY KEY (`Id`), + FOREIGN KEY (`ServerId`) REFERENCES `Servers` (`ServerId`) +); + + + +CREATE TABLE IF NOT EXISTS `CFG_ServerAFKChannelIds` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `ChannelId` BIGINT NOT NULL, + `ServerId` BIGINT NOT NULL, + `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), + `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), + PRIMARY KEY (`Id`), + FOREIGN KEY (`ServerId`) REFERENCES `Servers` (`ServerId`) +); + + + +CREATE TABLE IF NOT EXISTS `CFG_ServerTeamRoleIds` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `RoleId` BIGINT NOT NULL, + `TeamMemberType` ENUM ('Moderator', 'Admin') NOT NULL, + `ServerId` BIGINT NOT NULL, + `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), + `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), + PRIMARY KEY (`Id`), + FOREIGN KEY (`ServerId`) REFERENCES `Servers` (`ServerId`) +); + + + +CREATE TABLE IF NOT EXISTS `CFG_Technician` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `HelpCommandReferenceUrl` VARCHAR(255) NOT NULL, + `WaitForRestart` BIGINT NOT NULL DEFAULT 8, + `WaitForShutdown` BIGINT NOT NULL DEFAULT 8, + `CacheMaxMessages` BIGINT NOT NULL DEFAULT 1000000, + `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), + `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), + PRIMARY KEY (`Id`) +); + + + +CREATE TABLE IF NOT EXISTS `CFG_TechnicianPingUrls` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `URL` VARCHAR(255) NOT NULL, + `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), + `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), + PRIMARY KEY (`Id`) +); + + + +CREATE TABLE IF NOT EXISTS `CFG_TechnicianIds` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `TechnicianId` BIGINT NOT NULL, + `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), + `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), + PRIMARY KEY (`Id`) +); + + +CREATE TABLE IF NOT EXISTS `CFG_ServerHistory` +( + `Id` BIGINT(20) NOT NULL, + `MessageDeleteTimer` BIGINT NOT NULL DEFAULT 6, + `NotificationChatId` BIGINT NOT NULL, + `MaxVoiceStateHours` BIGINT NOT NULL DEFAULT 6, + `XpPerMessage` BIGINT NOT NULL DEFAULT 1, + `XpPerReaction` BIGINT NOT NULL DEFAULT 1, + `MaxMessageXpPerHour` BIGINT NOT NULL DEFAULT 20, + `XpPerOntimeHour` BIGINT NOT NULL DEFAULT 10, + `XpPerEventParticipation` BIGINT NOT NULL DEFAULT 10, + `XpPerAchievement` BIGINT NOT NULL DEFAULT 10, + `AFKCommandChannelId` BIGINT NOT NULL, + `HelpVoiceChannelId` BIGINT NOT NULL, + `TeamChannelId` BIGINT NOT NULL, + `LoginMessageChannelId` BIGINT NOT NULL, + `ServerId` BIGINT NOT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_CFG_ServerUpdate`;; + +CREATE TRIGGER `TR_CFG_ServerUpdate` + AFTER UPDATE + ON `CFG_Server` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_ServerHistory` (`Id`, + `MessageDeleteTimer`, + `NotificationChatId`, + `MaxVoiceStateHours`, + `XpPerMessage`, + `XpPerReaction`, + `MaxMessageXpPerHour`, + `XpPerOntimeHour`, + `XpPerEventParticipation`, + `XpPerAchievement`, + `AFKCommandChannelId`, + `HelpVoiceChannelId`, + `TeamChannelId`, + `LoginMessageChannelId`, + `ServerId`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.MessageDeleteTimer, + OLD.NotificationChatId, + OLD.MaxVoiceStateHours, + OLD.XpPerMessage, + OLD.XpPerReaction, + OLD.MaxMessageXpPerHour, + OLD.XpPerOntimeHour, + OLD.XpPerEventParticipation, + OLD.XpPerAchievement, + OLD.AFKCommandChannelId, + OLD.HelpVoiceChannelId, + OLD.TeamChannelId, + OLD.LoginMessageChannelId, + OLD.ServerId, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_CFG_ServerDelete`;; + +CREATE TRIGGER `TR_CFG_ServerDelete` + AFTER DELETE + ON `CFG_Server` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_ServerHistory` (`Id`, + `MessageDeleteTimer`, + `NotificationChatId`, + `MaxVoiceStateHours`, + `XpPerMessage`, + `XpPerReaction`, + `MaxMessageXpPerHour`, + `XpPerOntimeHour`, + `XpPerEventParticipation`, + `XpPerAchievement`, + `AFKCommandChannelId`, + `HelpVoiceChannelId`, + `TeamChannelId`, + `LoginMessageChannelId`, + `ServerId`, + `Deleted`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.MessageDeleteTimer, + OLD.NotificationChatId, + OLD.MaxVoiceStateHours, + OLD.XpPerMessage, + OLD.XpPerReaction, + OLD.MaxMessageXpPerHour, + OLD.XpPerOntimeHour, + OLD.XpPerEventParticipation, + OLD.XpPerAchievement, + OLD.AFKCommandChannelId, + OLD.HelpVoiceChannelId, + OLD.TeamChannelId, + OLD.LoginMessageChannelId, + OLD.ServerId, + TRUE, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +CREATE TABLE IF NOT EXISTS `CFG_ServerAFKChannelIdsHistory` +( + `Id` BIGINT(20) NOT NULL, + `ChannelId` BIGINT NOT NULL, + `ServerId` BIGINT NOT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_CFG_ServerAFKChannelIdsUpdate`;; + +CREATE TRIGGER `TR_CFG_ServerAFKChannelIdsUpdate` + AFTER UPDATE + ON `CFG_ServerAFKChannelIds` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_ServerAFKChannelIdsHistory` (`Id`, + `ChannelId`, + `ServerId`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.ChannelId, + OLD.ServerId, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_CFG_ServerAFKChannelIdsDelete`;; + +CREATE TRIGGER `TR_CFG_ServerAFKChannelIdsDelete` + AFTER DELETE + ON `CFG_ServerAFKChannelIds` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_ServerAFKChannelIdsHistory` (`Id`, + `ChannelId`, + `ServerId`, + `Deleted`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.ChannelId, + OLD.ServerId, + TRUE, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +CREATE TABLE IF NOT EXISTS `CFG_ServerTeamRoleIdsHistory` +( + `Id` BIGINT(20) NOT NULL, + `RoleId` BIGINT NOT NULL, + `TeamMemberType` ENUM ('Moderator', 'Admin') NOT NULL, + `ServerId` BIGINT NOT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_CFG_ServerTeamRoleIdsUpdate`;; + +CREATE TRIGGER `TR_CFG_ServerTeamRoleIdsUpdate` + AFTER UPDATE + ON `CFG_ServerTeamRoleIds` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_ServerTeamRoleIdsHistory` (`Id`, + `RoleId`, + `TeamMemberType`, + `ServerId`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.RoleId, + OLD.TeamMemberType, + OLD.ServerId, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_CFG_ServerTeamRoleIdsDelete`;; + +CREATE TRIGGER `TR_CFG_ServerTeamRoleIdsDelete` + AFTER DELETE + ON `CFG_ServerTeamRoleIds` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_ServerTeamRoleIdsHistory` (`Id`, + `RoleId`, + `TeamMemberType`, + `ServerId`, + `Deleted`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.RoleId, + OLD.TeamMemberType, + OLD.ServerId, + TRUE, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +CREATE TABLE IF NOT EXISTS `CFG_TechnicianHistory` +( + `Id` BIGINT(20) NOT NULL, + `HelpCommandReferenceUrl` VARCHAR(255) NOT NULL, + `WaitForRestart` BIGINT NOT NULL DEFAULT 8, + `WaitForShutdown` BIGINT NOT NULL DEFAULT 8, + `CacheMaxMessages` BIGINT NOT NULL DEFAULT 1000000, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_CFG_TechnicianUpdate`;; + +CREATE TRIGGER `TR_CFG_TechnicianUpdate` + AFTER UPDATE + ON `CFG_Technician` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_TechnicianHistory` (`Id`, + `HelpCommandReferenceUrl`, + `WaitForRestart`, + `WaitForShutdown`, + `CacheMaxMessages`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.HelpCommandReferenceUrl, + OLD.WaitForRestart, + OLD.WaitForShutdown, + OLD.CacheMaxMessages, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_CFG_TechnicianDelete`;; + +CREATE TRIGGER `TR_CFG_TechnicianDelete` + AFTER DELETE + ON `CFG_Technician` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_TechnicianHistory` (`Id`, + `HelpCommandReferenceUrl`, + `WaitForRestart`, + `WaitForShutdown`, + `CacheMaxMessages`, + `Deleted`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.HelpCommandReferenceUrl, + OLD.WaitForRestart, + OLD.WaitForShutdown, + OLD.CacheMaxMessages, + TRUE, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +CREATE TABLE IF NOT EXISTS `CFG_TechnicianIdsHistory` +( + `Id` BIGINT(20) NOT NULL, + `TechnicianId` BIGINT NOT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_CFG_TechnicianIdsUpdate`;; + +CREATE TRIGGER `TR_CFG_TechnicianIdsUpdate` + AFTER UPDATE + ON `CFG_TechnicianIds` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_TechnicianIdsHistory` (`Id`, + `TechnicianId`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.TechnicianId, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_CFG_TechnicianIdsDelete`;; + +CREATE TRIGGER `TR_CFG_TechnicianIdsDelete` + AFTER DELETE + ON `CFG_TechnicianIds` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_TechnicianIdsHistory` (`Id`, + `TechnicianId`, + `Deleted`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.TechnicianId, + TRUE, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +CREATE TABLE IF NOT EXISTS `CFG_TechnicianPingUrlsHistory` +( + `Id` BIGINT(20) NOT NULL, + `URL` VARCHAR(255) NOT NULL, + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_CFG_TechnicianPingUrlsUpdate`;; + +CREATE TRIGGER `TR_CFG_TechnicianPingUrlsUpdate` + AFTER UPDATE + ON `CFG_TechnicianPingUrls` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_TechnicianPingUrlsHistory` (`Id`, + `URL`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.URL, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_CFG_TechnicianPingUrlsDelete`;; + +CREATE TRIGGER `TR_CFG_TechnicianPingUrlsDelete` + AFTER DELETE + ON `CFG_TechnicianPingUrls` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_TechnicianPingUrlsHistory` (`Id`, + `URL`, + `Deleted`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.URL, + TRUE, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + diff --git a/bot/src/bot_data/scripts/1.1.0/3_ConfigFeatureFlags_down.sql b/bot/src/bot_data/scripts/1.1.0/3_ConfigFeatureFlags_down.sql new file mode 100644 index 00000000..9970595f --- /dev/null +++ b/bot/src/bot_data/scripts/1.1.0/3_ConfigFeatureFlags_down.sql @@ -0,0 +1,4 @@ +ALTER TABLE CFG_Technician DROP COLUMN FeatureFlags; + +ALTER TABLE CFG_Server DROP COLUMN FeatureFlags; + diff --git a/bot/src/bot_data/scripts/1.1.0/3_ConfigFeatureFlags_up.sql b/bot/src/bot_data/scripts/1.1.0/3_ConfigFeatureFlags_up.sql new file mode 100644 index 00000000..8b81f4b4 --- /dev/null +++ b/bot/src/bot_data/scripts/1.1.0/3_ConfigFeatureFlags_up.sql @@ -0,0 +1,6 @@ +ALTER TABLE CFG_Technician + ADD FeatureFlags JSON NULL DEFAULT ('{}') AFTER CacheMaxMessages; + +ALTER TABLE CFG_Server + ADD FeatureFlags JSON NULL DEFAULT ('{}') AFTER LoginMessageChannelId; + diff --git a/bot/src/bot_data/scripts/1.1.3/1_DefaultRole_down.sql b/bot/src/bot_data/scripts/1.1.3/1_DefaultRole_down.sql new file mode 100644 index 00000000..f465a5dc --- /dev/null +++ b/bot/src/bot_data/scripts/1.1.3/1_DefaultRole_down.sql @@ -0,0 +1,4 @@ +ALTER TABLE CFG_Server + DROP COLUMN DefaultRoleId; + + diff --git a/bot/src/bot_data/scripts/1.1.3/1_DefaultRole_up.sql b/bot/src/bot_data/scripts/1.1.3/1_DefaultRole_up.sql new file mode 100644 index 00000000..97b1c1ec --- /dev/null +++ b/bot/src/bot_data/scripts/1.1.3/1_DefaultRole_up.sql @@ -0,0 +1,4 @@ +ALTER TABLE CFG_Server + ADD DefaultRoleId BIGINT NULL AFTER LoginMessageChannelId; + + diff --git a/bot/src/bot_data/scripts/1.1.7/1_ShortRoleName_down.sql b/bot/src/bot_data/scripts/1.1.7/1_ShortRoleName_down.sql new file mode 100644 index 00000000..b15a3e0e --- /dev/null +++ b/bot/src/bot_data/scripts/1.1.7/1_ShortRoleName_down.sql @@ -0,0 +1,4 @@ +DROP TABLE `ShortRoleNames`; + +DROP TABLE `ShortRoleNamesHistory`; + diff --git a/bot/src/bot_data/migration/db_history_scripts/short_rule_names.sql b/bot/src/bot_data/scripts/1.1.7/1_ShortRoleName_up.sql similarity index 65% rename from bot/src/bot_data/migration/db_history_scripts/short_rule_names.sql rename to bot/src/bot_data/scripts/1.1.7/1_ShortRoleName_up.sql index f4ff95c2..ee0f9ef4 100644 --- a/bot/src/bot_data/migration/db_history_scripts/short_rule_names.sql +++ b/bot/src/bot_data/scripts/1.1.7/1_ShortRoleName_up.sql @@ -1,3 +1,17 @@ +CREATE TABLE IF NOT EXISTS `ShortRoleNames` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `ShortName` VARCHAR(255) NOT NULL, + `DiscordRoleId` BIGINT NOT NULL, + `Position` ENUM ('before', 'after') NOT NULL, + `ServerId` BIGINT, + `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), + `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), + PRIMARY KEY (`Id`), + FOREIGN KEY (`ServerId`) REFERENCES `Servers` (`ServerId`) +); + + CREATE TABLE IF NOT EXISTS `ShortRoleNamesHistory` ( `Id` BIGINT(20) NOT NULL, @@ -8,9 +22,9 @@ CREATE TABLE IF NOT EXISTS `ShortRoleNamesHistory` `Deleted` BOOL DEFAULT FALSE, `DateFrom` DATETIME(6) NOT NULL, `DateTo` DATETIME(6) NOT NULL -); +);; -DROP TRIGGER IF EXISTS `TR_ShortRoleNamesUpdate`; +DROP TRIGGER IF EXISTS `TR_ShortRoleNamesUpdate`;; CREATE TRIGGER `TR_ShortRoleNamesUpdate` AFTER UPDATE @@ -21,9 +35,9 @@ BEGIN `DateTo`) VALUES (OLD.Id, OLD.ShortName, OLD.DiscordRoleId, OLD.Position, OLD.ServerId, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); -END; +END;; -DROP TRIGGER IF EXISTS `TR_ShortRoleNamesDelete`; +DROP TRIGGER IF EXISTS `TR_ShortRoleNamesDelete`;; CREATE TRIGGER `TR_ShortRoleNamesDelete` AFTER DELETE @@ -35,4 +49,5 @@ BEGIN `DateTo`) VALUES (OLD.Id, OLD.ShortName, OLD.DiscordRoleId, OLD.Position, OLD.ServerId, TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); -END; \ No newline at end of file +END;; + diff --git a/bot/src/bot_data/scripts/1.1.7/2_FixUpdates_down.sql b/bot/src/bot_data/scripts/1.1.7/2_FixUpdates_down.sql new file mode 100644 index 00000000..6ddb34a4 --- /dev/null +++ b/bot/src/bot_data/scripts/1.1.7/2_FixUpdates_down.sql @@ -0,0 +1,10 @@ +ALTER TABLE CFG_ServerHistory + DROP COLUMN DefaultRoleId; + + +ALTER TABLE CFG_TechnicianHistory + DROP COLUMN FeatureFlags; + +ALTER TABLE CFG_ServerHistory + DROP COLUMN FeatureFlags; + diff --git a/bot/src/bot_data/scripts/1.1.7/2_FixUpdates_up.sql b/bot/src/bot_data/scripts/1.1.7/2_FixUpdates_up.sql new file mode 100644 index 00000000..c2e3845d --- /dev/null +++ b/bot/src/bot_data/scripts/1.1.7/2_FixUpdates_up.sql @@ -0,0 +1,171 @@ +ALTER TABLE CFG_ServerHistory + ADD DefaultRoleId BIGINT NULL AFTER LoginMessageChannelId; + + +ALTER TABLE CFG_TechnicianHistory + ADD FeatureFlags JSON NULL DEFAULT ('{}') AFTER CacheMaxMessages; + +ALTER TABLE CFG_ServerHistory + ADD FeatureFlags JSON NULL DEFAULT ('{}') AFTER LoginMessageChannelId; + +DROP TRIGGER IF EXISTS `TR_CFG_ServerUpdate`;; + +CREATE TRIGGER `TR_CFG_ServerUpdate` + AFTER UPDATE + ON `CFG_Server` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_ServerHistory` (`Id`, + `MessageDeleteTimer`, + `NotificationChatId`, + `MaxVoiceStateHours`, + `XpPerMessage`, + `XpPerReaction`, + `MaxMessageXpPerHour`, + `XpPerOntimeHour`, + `XpPerEventParticipation`, + `XpPerAchievement`, + `AFKCommandChannelId`, + `HelpVoiceChannelId`, + `TeamChannelId`, + `LoginMessageChannelId`, + `DefaultRoleId`, + `FeatureFlags`, + `ServerId`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.MessageDeleteTimer, + OLD.NotificationChatId, + OLD.MaxVoiceStateHours, + OLD.XpPerMessage, + OLD.XpPerReaction, + OLD.MaxMessageXpPerHour, + OLD.XpPerOntimeHour, + OLD.XpPerEventParticipation, + OLD.XpPerAchievement, + OLD.AFKCommandChannelId, + OLD.HelpVoiceChannelId, + OLD.TeamChannelId, + OLD.LoginMessageChannelId, + OLD.DefaultRoleId, + OLD.FeatureFlags, + OLD.ServerId, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_CFG_ServerDelete`;; + +CREATE TRIGGER `TR_CFG_ServerDelete` + AFTER DELETE + ON `CFG_Server` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_ServerHistory` (`Id`, + `MessageDeleteTimer`, + `NotificationChatId`, + `MaxVoiceStateHours`, + `XpPerMessage`, + `XpPerReaction`, + `MaxMessageXpPerHour`, + `XpPerOntimeHour`, + `XpPerEventParticipation`, + `XpPerAchievement`, + `AFKCommandChannelId`, + `HelpVoiceChannelId`, + `TeamChannelId`, + `LoginMessageChannelId`, + `DefaultRoleId`, + `ServerId`, + `FeatureFlags`, + `Deleted`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.MessageDeleteTimer, + OLD.NotificationChatId, + OLD.MaxVoiceStateHours, + OLD.XpPerMessage, + OLD.XpPerReaction, + OLD.MaxMessageXpPerHour, + OLD.XpPerOntimeHour, + OLD.XpPerEventParticipation, + OLD.XpPerAchievement, + OLD.AFKCommandChannelId, + OLD.HelpVoiceChannelId, + OLD.TeamChannelId, + OLD.LoginMessageChannelId, + OLD.DefaultRoleId, + OLD.FeatureFlags, + OLD.ServerId, + TRUE, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +CREATE TABLE IF NOT EXISTS `CFG_TechnicianHistory` +( + `Id` BIGINT(20) NOT NULL, + `HelpCommandReferenceUrl` VARCHAR(255) NOT NULL, + `WaitForRestart` BIGINT NOT NULL DEFAULT 8, + `WaitForShutdown` BIGINT NOT NULL DEFAULT 8, + `CacheMaxMessages` BIGINT NOT NULL DEFAULT 1000000, + `FeatureFlags` JSON NULL DEFAULT ('{}'), + `Deleted` BOOL DEFAULT FALSE, + `DateFrom` DATETIME(6) NOT NULL, + `DateTo` DATETIME(6) NOT NULL +);; + +DROP TRIGGER IF EXISTS `TR_CFG_TechnicianUpdate`;; + +CREATE TRIGGER `TR_CFG_TechnicianUpdate` + AFTER UPDATE + ON `CFG_Technician` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_TechnicianHistory` (`Id`, + `HelpCommandReferenceUrl`, + `WaitForRestart`, + `WaitForShutdown`, + `CacheMaxMessages`, + `FeatureFlags`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.HelpCommandReferenceUrl, + OLD.WaitForRestart, + OLD.WaitForShutdown, + OLD.CacheMaxMessages, + OLD.FeatureFlags, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_CFG_TechnicianDelete`;; + +CREATE TRIGGER `TR_CFG_TechnicianDelete` + AFTER DELETE + ON `CFG_Technician` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_TechnicianHistory` (`Id`, + `HelpCommandReferenceUrl`, + `WaitForRestart`, + `WaitForShutdown`, + `CacheMaxMessages`, + `FeatureFlags`, + `Deleted`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.HelpCommandReferenceUrl, + OLD.WaitForRestart, + OLD.WaitForShutdown, + OLD.CacheMaxMessages, + OLD.FeatureFlags, + TRUE, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + diff --git a/bot/src/bot_data/scripts/1.1.9/1_ShortRoleNameOnlyHighest_down.sql b/bot/src/bot_data/scripts/1.1.9/1_ShortRoleNameOnlyHighest_down.sql new file mode 100644 index 00000000..8ccceb05 --- /dev/null +++ b/bot/src/bot_data/scripts/1.1.9/1_ShortRoleNameOnlyHighest_down.sql @@ -0,0 +1,9 @@ +ALTER TABLE CFG_Server + DROP COLUMN ShortRoleNameSetOnlyHighest; + + + +ALTER TABLE CFG_ServerHistory + DROP COLUMN ShortRoleNameSetOnlyHighest; + + diff --git a/bot/src/bot_data/migration/db_history_scripts/config/server.sql b/bot/src/bot_data/scripts/1.1.9/1_ShortRoleNameOnlyHighest_up.sql similarity index 72% rename from bot/src/bot_data/migration/db_history_scripts/config/server.sql rename to bot/src/bot_data/scripts/1.1.9/1_ShortRoleNameOnlyHighest_up.sql index 02f1b841..e90f3006 100644 --- a/bot/src/bot_data/migration/db_history_scripts/config/server.sql +++ b/bot/src/bot_data/scripts/1.1.9/1_ShortRoleNameOnlyHighest_up.sql @@ -1,29 +1,12 @@ -CREATE TABLE IF NOT EXISTS `CFG_ServerHistory` -( - `Id` BIGINT(20) NOT NULL, - `MessageDeleteTimer` BIGINT NOT NULL DEFAULT 6, - `NotificationChatId` BIGINT NOT NULL, - `MaxVoiceStateHours` BIGINT NOT NULL DEFAULT 6, - `XpPerMessage` BIGINT NOT NULL DEFAULT 1, - `XpPerReaction` BIGINT NOT NULL DEFAULT 1, - `MaxMessageXpPerHour` BIGINT NOT NULL DEFAULT 20, - `XpPerOntimeHour` BIGINT NOT NULL DEFAULT 10, - `XpPerEventParticipation` BIGINT NOT NULL DEFAULT 10, - `XpPerAchievement` BIGINT NOT NULL DEFAULT 10, - `AFKCommandChannelId` BIGINT NOT NULL, - `HelpVoiceChannelId` BIGINT NOT NULL, - `TeamChannelId` BIGINT NOT NULL, - `LoginMessageChannelId` BIGINT NOT NULL, - `DefaultRoleId` BIGINT NULL, - `ShortRoleNameSetOnlyHighest` BOOLEAN NOT NULL DEFAULT FALSE, - `FeatureFlags` JSON NULL DEFAULT ('{}'), - `ServerId` BIGINT NOT NULL, - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); +ALTER TABLE CFG_Server + ADD ShortRoleNameSetOnlyHighest BOOLEAN NOT NULL DEFAULT FALSE AFTER DefaultRoleId; -DROP TRIGGER IF EXISTS `TR_CFG_ServerUpdate`; + + +ALTER TABLE CFG_ServerHistory + ADD ShortRoleNameSetOnlyHighest BOOLEAN NOT NULL DEFAULT FALSE AFTER DefaultRoleId; + +DROP TRIGGER IF EXISTS `TR_CFG_ServerUpdate`;; CREATE TRIGGER `TR_CFG_ServerUpdate` AFTER UPDATE @@ -70,9 +53,9 @@ BEGIN OLD.ServerId, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); -END; +END;; -DROP TRIGGER IF EXISTS `TR_CFG_ServerDelete`; +DROP TRIGGER IF EXISTS `TR_CFG_ServerDelete`;; CREATE TRIGGER `TR_CFG_ServerDelete` AFTER DELETE @@ -121,4 +104,5 @@ BEGIN TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); -END; \ No newline at end of file +END;; + diff --git a/bot/src/bot_data/scripts/1.2.0/1_FixUserHistory_down.sql b/bot/src/bot_data/scripts/1.2.0/1_FixUserHistory_down.sql new file mode 100644 index 00000000..f19ec313 --- /dev/null +++ b/bot/src/bot_data/scripts/1.2.0/1_FixUserHistory_down.sql @@ -0,0 +1,9 @@ +ALTER TABLE UsersHistory + DROP COLUMN MessageCount; + + + +ALTER TABLE UsersHistory + DROP COLUMN ReactionCount; + + diff --git a/bot/src/bot_data/scripts/1.2.0/1_FixUserHistory_up.sql b/bot/src/bot_data/scripts/1.2.0/1_FixUserHistory_up.sql new file mode 100644 index 00000000..a4997576 --- /dev/null +++ b/bot/src/bot_data/scripts/1.2.0/1_FixUserHistory_up.sql @@ -0,0 +1,32 @@ +ALTER TABLE `Users` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `Users` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +DROP TRIGGER IF EXISTS `TR_UsersUpdate`;; + +CREATE TRIGGER `TR_UsersUpdate` + AFTER UPDATE + ON `Users` + FOR EACH ROW +BEGIN + INSERT INTO `UsersHistory` (`Id`, `DiscordId`, `XP`, `ReactionCount`, `MessageCount`, `ServerId`, + `DateFrom`, `DateTo`) + VALUES (OLD.UserId, OLD.DiscordId, OLD.XP, OLD.ReactionCount, OLD.MessageCount, OLD.ServerId, + OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_UsersDelete`;; + +CREATE TRIGGER `TR_UsersDelete` + AFTER DELETE + ON `Users` + FOR EACH ROW +BEGIN + INSERT INTO `UsersHistory` (`Id`, `DiscordId`, `XP`, `ReactionCount`, `MessageCount`, `ServerId`, + `Deleted`, `DateFrom`, `DateTo`) + VALUES (OLD.UserId, OLD.DiscordId, OLD.XP, OLD.ReactionCount, OLD.MessageCount, OLD.ServerId, TRUE, + OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + diff --git a/bot/src/bot_data/scripts/1.2.0/2_Birthday_down.sql b/bot/src/bot_data/scripts/1.2.0/2_Birthday_down.sql new file mode 100644 index 00000000..19fc9ae0 --- /dev/null +++ b/bot/src/bot_data/scripts/1.2.0/2_Birthday_down.sql @@ -0,0 +1,19 @@ +ALTER TABLE Users + DROP COLUMN Birthday; + + + +ALTER TABLE UsersHistory + DROP COLUMN Birthday; + + + +ALTER TABLE CFG_Server + DROP COLUMN XpForBirthday; + + + +ALTER TABLE CFG_ServerHistory + DROP COLUMN XpForBirthday; + + diff --git a/bot/src/bot_data/scripts/1.2.0/2_Birthday_up.sql b/bot/src/bot_data/scripts/1.2.0/2_Birthday_up.sql new file mode 100644 index 00000000..fa92e8e8 --- /dev/null +++ b/bot/src/bot_data/scripts/1.2.0/2_Birthday_up.sql @@ -0,0 +1,150 @@ +ALTER TABLE Users + ADD Birthday DATE NULL AFTER MessageCount; + + + +ALTER TABLE UsersHistory + ADD Birthday DATE NULL AFTER MessageCount; + + +ALTER TABLE `Users` + CHANGE `CreatedAt` `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6);; + +ALTER TABLE `Users` + CHANGE `LastModifiedAt` `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6);; + +DROP TRIGGER IF EXISTS `TR_UsersUpdate`;; + +CREATE TRIGGER `TR_UsersUpdate` + AFTER UPDATE + ON `Users` + FOR EACH ROW +BEGIN + INSERT INTO `UsersHistory` (`Id`, `DiscordId`, `XP`, `ReactionCount`, `MessageCount`, `Birthday`, `ServerId`, + `DateFrom`, `DateTo`) + VALUES (OLD.UserId, OLD.DiscordId, OLD.XP, OLD.ReactionCount, OLD.MessageCount, OLD.Birthday, OLD.ServerId, + OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_UsersDelete`;; + +CREATE TRIGGER `TR_UsersDelete` + AFTER DELETE + ON `Users` + FOR EACH ROW +BEGIN + INSERT INTO `UsersHistory` (`Id`, `DiscordId`, `XP`, `ReactionCount`, `MessageCount`, `Birthday`, `ServerId`, + `Deleted`, `DateFrom`, `DateTo`) + VALUES (OLD.UserId, OLD.DiscordId, OLD.XP, OLD.ReactionCount, OLD.MessageCount, OLD.Birthday, OLD.ServerId, TRUE, + OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); +END;; + + +ALTER TABLE CFG_Server + ADD XpForBirthday BIGINT(20) NOT NULL DEFAULT 0 AFTER XpPerAchievement; + + + +ALTER TABLE CFG_ServerHistory + ADD XpForBirthday BIGINT(20) NOT NULL DEFAULT 0 AFTER XpPerAchievement; + +DROP TRIGGER IF EXISTS `TR_CFG_ServerUpdate`;; + +CREATE TRIGGER `TR_CFG_ServerUpdate` + AFTER UPDATE + ON `CFG_Server` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_ServerHistory` (`Id`, + `MessageDeleteTimer`, + `NotificationChatId`, + `MaxVoiceStateHours`, + `XpPerMessage`, + `XpPerReaction`, + `MaxMessageXpPerHour`, + `XpPerOntimeHour`, + `XpPerEventParticipation`, + `XpPerAchievement`, + `AFKCommandChannelId`, + `HelpVoiceChannelId`, + `TeamChannelId`, + `LoginMessageChannelId`, + `DefaultRoleId`, + `ShortRoleNameSetOnlyHighest`, + `FeatureFlags`, + `ServerId`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.MessageDeleteTimer, + OLD.NotificationChatId, + OLD.MaxVoiceStateHours, + OLD.XpPerMessage, + OLD.XpPerReaction, + OLD.MaxMessageXpPerHour, + OLD.XpPerOntimeHour, + OLD.XpPerEventParticipation, + OLD.XpPerAchievement, + OLD.AFKCommandChannelId, + OLD.HelpVoiceChannelId, + OLD.TeamChannelId, + OLD.LoginMessageChannelId, + OLD.DefaultRoleId, + OLD.ShortRoleNameSetOnlyHighest, + OLD.FeatureFlags, + OLD.ServerId, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_CFG_ServerDelete`;; + +CREATE TRIGGER `TR_CFG_ServerDelete` + AFTER DELETE + ON `CFG_Server` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_ServerHistory` (`Id`, + `MessageDeleteTimer`, + `NotificationChatId`, + `MaxVoiceStateHours`, + `XpPerMessage`, + `XpPerReaction`, + `MaxMessageXpPerHour`, + `XpPerOntimeHour`, + `XpPerEventParticipation`, + `XpPerAchievement`, + `AFKCommandChannelId`, + `HelpVoiceChannelId`, + `TeamChannelId`, + `LoginMessageChannelId`, + `DefaultRoleId`, + `ShortRoleNameSetOnlyHighest`, + `ServerId`, + `FeatureFlags`, + `Deleted`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.MessageDeleteTimer, + OLD.NotificationChatId, + OLD.MaxVoiceStateHours, + OLD.XpPerMessage, + OLD.XpPerReaction, + OLD.MaxMessageXpPerHour, + OLD.XpPerOntimeHour, + OLD.XpPerEventParticipation, + OLD.XpPerAchievement, + OLD.AFKCommandChannelId, + OLD.HelpVoiceChannelId, + OLD.TeamChannelId, + OLD.LoginMessageChannelId, + OLD.DefaultRoleId, + OLD.ShortRoleNameSetOnlyHighest, + OLD.FeatureFlags, + OLD.ServerId, + TRUE, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + diff --git a/bot/src/bot_data/scripts/1.2.0/3_SteamSpecialOffer_down.sql b/bot/src/bot_data/scripts/1.2.0/3_SteamSpecialOffer_down.sql new file mode 100644 index 00000000..2cca3310 --- /dev/null +++ b/bot/src/bot_data/scripts/1.2.0/3_SteamSpecialOffer_down.sql @@ -0,0 +1,11 @@ +DROP TABLE `SteamSpecialOffers`; + + +ALTER TABLE CFG_Server + DROP COLUMN GameOfferNotificationChatId; + + +ALTER TABLE CFG_ServerHistory + DROP COLUMN GameOfferNotificationChatId; + + diff --git a/bot/src/bot_data/scripts/1.2.0/3_SteamSpecialOffer_up.sql b/bot/src/bot_data/scripts/1.2.0/3_SteamSpecialOffer_up.sql new file mode 100644 index 00000000..f395c825 --- /dev/null +++ b/bot/src/bot_data/scripts/1.2.0/3_SteamSpecialOffer_up.sql @@ -0,0 +1,23 @@ +CREATE TABLE IF NOT EXISTS `SteamSpecialOffers` +( + `Id` BIGINT NOT NULL AUTO_INCREMENT, + `Game` VARCHAR(255) NOT NULL, + `OriginalPrice` FLOAT NOT NULL, + `DiscountPrice` FLOAT NOT NULL, + `DiscountPct` BIGINT NOT NULL, + `CreatedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6), + `LastModifiedAt` DATETIME(6) NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), + PRIMARY KEY (`Id`) +); + + + +ALTER TABLE CFG_Server + ADD COLUMN GameOfferNotificationChatId BIGINT NULL AFTER ShortRoleNameSetOnlyHighest; + + + +ALTER TABLE CFG_ServerHistory + ADD COLUMN GameOfferNotificationChatId BIGINT NULL AFTER ShortRoleNameSetOnlyHighest; + + diff --git a/bot/src/bot_data/scripts/1.2.0/4_MaxSteamOfferCount_down.sql b/bot/src/bot_data/scripts/1.2.0/4_MaxSteamOfferCount_down.sql new file mode 100644 index 00000000..d4884917 --- /dev/null +++ b/bot/src/bot_data/scripts/1.2.0/4_MaxSteamOfferCount_down.sql @@ -0,0 +1,9 @@ +ALTER TABLE CFG_Technician + DROP COLUMN MaxSteamOfferCount; + + + +ALTER TABLE CFG_TechnicianHistory + DROP COLUMN MaxSteamOfferCount; + + diff --git a/bot/src/bot_data/scripts/1.2.0/4_MaxSteamOfferCount_up.sql b/bot/src/bot_data/scripts/1.2.0/4_MaxSteamOfferCount_up.sql new file mode 100644 index 00000000..f9f21398 --- /dev/null +++ b/bot/src/bot_data/scripts/1.2.0/4_MaxSteamOfferCount_up.sql @@ -0,0 +1,64 @@ +ALTER TABLE CFG_Technician + ADD MaxSteamOfferCount BIGINT NOT NULL DEFAULT 250 AFTER CacheMaxMessages; + + + +ALTER TABLE CFG_TechnicianHistory + ADD MaxSteamOfferCount BIGINT NOT NULL DEFAULT 250 AFTER CacheMaxMessages; + +DROP TRIGGER IF EXISTS `TR_CFG_TechnicianUpdate`;; + +CREATE TRIGGER `TR_CFG_TechnicianUpdate` + AFTER UPDATE + ON `CFG_Technician` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_TechnicianHistory` (`Id`, + `HelpCommandReferenceUrl`, + `WaitForRestart`, + `WaitForShutdown`, + `CacheMaxMessages`, + `MaxSteamOfferCount`, + `FeatureFlags`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.HelpCommandReferenceUrl, + OLD.WaitForRestart, + OLD.WaitForShutdown, + OLD.CacheMaxMessages, + OLD.MaxSteamOfferCount, + OLD.FeatureFlags, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + +DROP TRIGGER IF EXISTS `TR_CFG_TechnicianDelete`;; + +CREATE TRIGGER `TR_CFG_TechnicianDelete` + AFTER DELETE + ON `CFG_Technician` + FOR EACH ROW +BEGIN + INSERT INTO `CFG_TechnicianHistory` (`Id`, + `HelpCommandReferenceUrl`, + `WaitForRestart`, + `WaitForShutdown`, + `CacheMaxMessages`, + `MaxSteamOfferCount`, + `FeatureFlags`, + `Deleted`, + `DateFrom`, + `DateTo`) + VALUES (OLD.Id, + OLD.HelpCommandReferenceUrl, + OLD.WaitForRestart, + OLD.WaitForShutdown, + OLD.CacheMaxMessages, + OLD.MaxSteamOfferCount, + OLD.FeatureFlags, + TRUE, + OLD.LastModifiedAt, + CURRENT_TIMESTAMP(6)); +END;; + diff --git a/bot/src/bot_data/scripts/1.2.0/5_MaintenanceMode_down.sql b/bot/src/bot_data/scripts/1.2.0/5_MaintenanceMode_down.sql new file mode 100644 index 00000000..a21475b6 --- /dev/null +++ b/bot/src/bot_data/scripts/1.2.0/5_MaintenanceMode_down.sql @@ -0,0 +1,9 @@ +ALTER TABLE CFG_Technician + DROP COLUMN Maintenance; + + + +ALTER TABLE CFG_TechnicianHistory + DROP COLUMN Maintenance; + + diff --git a/bot/src/bot_data/migration/db_history_scripts/config/technician.sql b/bot/src/bot_data/scripts/1.2.0/5_MaintenanceMode_up.sql similarity index 71% rename from bot/src/bot_data/migration/db_history_scripts/config/technician.sql rename to bot/src/bot_data/scripts/1.2.0/5_MaintenanceMode_up.sql index 3866f88f..895e24ad 100644 --- a/bot/src/bot_data/migration/db_history_scripts/config/technician.sql +++ b/bot/src/bot_data/scripts/1.2.0/5_MaintenanceMode_up.sql @@ -1,19 +1,12 @@ -CREATE TABLE IF NOT EXISTS `CFG_TechnicianHistory` -( - `Id` BIGINT(20) NOT NULL, - `HelpCommandReferenceUrl` VARCHAR(255) NOT NULL, - `WaitForRestart` BIGINT NOT NULL DEFAULT 8, - `WaitForShutdown` BIGINT NOT NULL DEFAULT 8, - `CacheMaxMessages` BIGINT NOT NULL DEFAULT 1000000, - `MaxSteamOfferCount` BIGINT NOT NULL DEFAULT 250, - `Maintenance` BOOLEAN DEFAULT FALSE, - `FeatureFlags` JSON NULL DEFAULT ('{}'), - `Deleted` BOOL DEFAULT FALSE, - `DateFrom` DATETIME(6) NOT NULL, - `DateTo` DATETIME(6) NOT NULL -); +ALTER TABLE CFG_Technician + ADD Maintenance BOOLEAN DEFAULT FALSE AFTER MaxSteamOfferCount; -DROP TRIGGER IF EXISTS `TR_CFG_TechnicianUpdate`; + + +ALTER TABLE CFG_TechnicianHistory + ADD Maintenance BOOLEAN DEFAULT FALSE AFTER MaxSteamOfferCount; + +DROP TRIGGER IF EXISTS `TR_CFG_TechnicianUpdate`;; CREATE TRIGGER `TR_CFG_TechnicianUpdate` AFTER UPDATE @@ -40,9 +33,9 @@ BEGIN OLD.FeatureFlags, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); -END; +END;; -DROP TRIGGER IF EXISTS `TR_CFG_TechnicianDelete`; +DROP TRIGGER IF EXISTS `TR_CFG_TechnicianDelete`;; CREATE TRIGGER `TR_CFG_TechnicianDelete` AFTER DELETE @@ -71,4 +64,5 @@ BEGIN TRUE, OLD.LastModifiedAt, CURRENT_TIMESTAMP(6)); -END; \ No newline at end of file +END;; + diff --git a/bot/src/bot_data/service/migration_service.py b/bot/src/bot_data/service/migration_service.py index ab347283..b2356eaa 100644 --- a/bot/src/bot_data/service/migration_service.py +++ b/bot/src/bot_data/service/migration_service.py @@ -1,9 +1,14 @@ +import glob +import os + from cpl_core.database.context import DatabaseContextABC from cpl_core.dependency_injection import ServiceProviderABC from cpl_query.extension import List +from packaging import version +import bot from bot_core.logging.database_logger import DatabaseLogger -from bot_data.abc.migration_abc import MigrationABC +from bot_data.model.migration import Migration from bot_data.model.migration_history import MigrationHistory @@ -20,14 +25,99 @@ class MigrationService: self._db = db self._cursor = db.cursor - self._migrations: List[MigrationABC] = ( - List(type, MigrationABC.__subclasses__()).order_by(lambda x: x.name.split("_")[0]).then_by(lambda x: x.prio) + def _get_migration_history(self) -> List[MigrationHistory]: + results = self._db.select( + """ + SELECT * FROM `MigrationHistory` + """ ) + applied_migrations = List(MigrationHistory) + for result in results: + applied_migrations.add(MigrationHistory(result[0], result[1])) - def migrate(self): - self._logger.info(__name__, f"Running Migrations") - for migration in self._migrations: - migration_id = migration.__name__ + return applied_migrations + + def _migration_migrations_to_old(self, migration: MigrationHistory): + if migration.migration_id.endswith("Migration"): + return + + self._logger.debug(__name__, f"Migrate new migration {migration.migration_id} to old method") + self._cursor.execute(migration.change_id_string(f"{migration.migration_id}Migration")) + self._db.save_changes() + + def _migration_migrations_to_new(self, migration: MigrationHistory): + if not migration.migration_id.endswith("Migration"): + return + + self._logger.debug(__name__, f"Migrate old migration {migration.migration_id} to new method") + self._cursor.execute(migration.change_id_string(migration.migration_id.replace("Migration", ""))) + self._db.save_changes() + + def _migrate_from_old_to_new(self): + self._cursor.execute("SHOW TABLES LIKE 'MigrationHistory'") + result = self._cursor.fetchone() + if not result: + return + + for migration in self._get_migration_history(): + if version.Version(bot.__version__) < version.Version("1.2.2"): + self._migration_migrations_to_old(migration) + else: + self._migration_migrations_to_new(migration) + + def _load_scripts(self, upgrade: bool = True) -> List[Migration]: + migrations = List(Migration) + path = "../../src/bot_data/scripts" + + if not os.path.exists(path): + raise Exception("Migration path not found") + + folders = List(str, glob.glob(f"{path}/*")) + if upgrade: + folders = folders.order_by() + else: + folders = folders.order_by_descending() + + for folder in folders: + splitted = folder.split("/") + version_str = splitted[len(splitted) - 1] + + # upgrade do not run migrations from higher versions + if upgrade and version.Version(version_str) > version.Version(bot.__version__): + break + # downgrade run migrations from higher versions + if not upgrade and version.Version(version_str) <= version.Version(bot.__version__): + continue + + files = List(str, os.listdir(folder)).where(lambda x: x.endswith(f"_{'up' if upgrade else 'down'}.sql")) + if upgrade: + files = files.order_by() + else: + files = files.order_by_descending() + + for file in files.to_list(): + if not file.endswith(".sql"): + continue + + name = str(file.split(".sql")[0]) + if name.endswith("_up"): + name = name.replace("_up", "") + elif name.endswith("_down"): + name = name.replace("_down", "") + + name = name.split("_")[1] + + with open(f"{folder}/{file}", "r") as f: + script = f.read() + f.close() + + migrations.add(Migration(name, version_str, script)) + + return migrations + + def _execute(self, migrations: List[Migration], upgrade: bool = True): + for migration in migrations: + active_statement = "" try: # check if table exists self._cursor.execute("SHOW TABLES LIKE 'MigrationHistory'") @@ -36,17 +126,36 @@ class MigrationService: # there is a table named "tableName" self._logger.trace( __name__, - f"Running SQL Command: {MigrationHistory.get_select_by_id_string(migration_id)}", + f"Running SQL Command: {MigrationHistory.get_select_by_id_string(migration.name)}", ) - migration_from_db = self._db.select(MigrationHistory.get_select_by_id_string(migration_id)) - if migration_from_db is not None and len(migration_from_db) > 0: + migration_from_db = self._db.select(MigrationHistory.get_select_by_id_string(migration.name)) + if upgrade and migration_from_db is not None and len(migration_from_db) > 0: + continue + elif not upgrade and (migration_from_db is None or len(migration_from_db) == 0): continue - self._logger.debug(__name__, f"Running Migration {migration_id}") - migration_as_service: MigrationABC = self._services.get_service(migration) - migration_as_service.upgrade() - self._cursor.execute(MigrationHistory(migration_id).insert_string) - self._db.save_changes() + self._logger.debug( + __name__, f"Running {'upgrade' if upgrade else 'downgrade'} migration: {migration.name}" + ) + for statement in migration.script.split("\n\n"): + if statement in ["", "\n"]: + continue + active_statement = statement + self._cursor.execute(statement + ";") + + self._cursor.execute( + MigrationHistory(migration.name).insert_string + if upgrade + else MigrationHistory(migration.name).delete_string + ) + self._db.save_changes() except Exception as e: - self._logger.error(__name__, f"Cannot get migration with id {migration}", e) + self._logger.fatal( + __name__, f"Migration failed: {migration.version}-{migration.name}\n{active_statement}", e + ) + + def migrate(self): + self._migrate_from_old_to_new() + self._execute(self._load_scripts()) + self._execute(self._load_scripts(False), False) diff --git a/bot/src/bot_data/service/technician_config_seeder.py b/bot/src/bot_data/service/technician_config_seeder.py index 3107db0a..7b87dbbe 100644 --- a/bot/src/bot_data/service/technician_config_seeder.py +++ b/bot/src/bot_data/service/technician_config_seeder.py @@ -32,6 +32,8 @@ class TechnicianConfigSeeder(DataSeederABC): 8, 8, 1000000, + 100, + False, {}, List(int, [240160344557879316]), List( diff --git a/bot/src/bot_data/startup_migration_extension.py b/bot/src/bot_data/startup_migration_extension.py index 14a90938..58c6e083 100644 --- a/bot/src/bot_data/startup_migration_extension.py +++ b/bot/src/bot_data/startup_migration_extension.py @@ -3,39 +3,6 @@ from cpl_core.configuration import ConfigurationABC from cpl_core.dependency_injection import ServiceCollectionABC from cpl_core.environment import ApplicationEnvironmentABC -from bot_data.abc.migration_abc import MigrationABC -from bot_data.migration.achievements_migration import AchievementsMigration -from bot_data.migration.api_key_migration import ApiKeyMigration -from bot_data.migration.api_migration import ApiMigration -from bot_data.migration.auto_role_fix1_migration import AutoRoleFix1Migration -from bot_data.migration.auto_role_migration import AutoRoleMigration -from bot_data.migration.birthday_migration import BirthdayMigration -from bot_data.migration.config_feature_flags_migration import ( - ConfigFeatureFlagsMigration, -) -from bot_data.migration.config_migration import ConfigMigration -from bot_data.migration.db_history_migration import DBHistoryMigration -from bot_data.migration.default_role_migration import DefaultRoleMigration -from bot_data.migration.fix_updates_migration import FixUpdatesMigration -from bot_data.migration.fix_user_history_migration import FixUserHistoryMigration -from bot_data.migration.initial_migration import InitialMigration -from bot_data.migration.level_migration import LevelMigration -from bot_data.migration.maintenance_mode_migration import MaintenanceModeMigration -from bot_data.migration.max_steam_offer_count_migration import MaxSteamOfferCountMigration -from bot_data.migration.remove_stats_migration import RemoveStatsMigration -from bot_data.migration.short_role_name_migration import ShortRoleNameMigration -from bot_data.migration.short_role_name_only_highest_migration import ( - ShortRoleNameOnlyHighestMigration, -) -from bot_data.migration.stats_migration import StatsMigration -from bot_data.migration.steam_special_offer_migration import SteamSpecialOfferMigration -from bot_data.migration.user_joined_game_server_migration import ( - UserJoinedGameServerMigration, -) -from bot_data.migration.user_message_count_per_hour_migration import ( - UserMessageCountPerHourMigration, -) -from bot_data.migration.user_warning_migration import UserWarningMigration from bot_data.service.migration_service import MigrationService @@ -48,27 +15,3 @@ class StartupMigrationExtension(StartupExtensionABC): def configure_services(self, services: ServiceCollectionABC, env: ApplicationEnvironmentABC): services.add_transient(MigrationService) - services.add_transient(MigrationABC, InitialMigration) - services.add_transient(MigrationABC, AutoRoleMigration) # 03.10.2022 #54 - 0.2.2 - services.add_transient(MigrationABC, ApiMigration) # 15.10.2022 #70 - 0.3.0 - services.add_transient(MigrationABC, LevelMigration) # 06.11.2022 #25 - 0.3.0 - services.add_transient(MigrationABC, StatsMigration) # 09.11.2022 #46 - 0.3.0 - services.add_transient(MigrationABC, AutoRoleFix1Migration) # 30.12.2022 #151 - 0.3.0 - services.add_transient(MigrationABC, UserMessageCountPerHourMigration) # 11.01.2023 #168 - 0.3.1 - services.add_transient(MigrationABC, ApiKeyMigration) # 09.02.2023 #162 - 1.0.0 - services.add_transient(MigrationABC, UserJoinedGameServerMigration) # 12.02.2023 #181 - 1.0.0 - services.add_transient(MigrationABC, RemoveStatsMigration) # 19.02.2023 #190 - 1.0.0 - services.add_transient(MigrationABC, UserWarningMigration) # 21.02.2023 #35 - 1.0.0 - services.add_transient(MigrationABC, DBHistoryMigration) # 06.03.2023 #246 - 1.0.0 - services.add_transient(MigrationABC, AchievementsMigration) # 14.06.2023 #268 - 1.1.0 - services.add_transient(MigrationABC, ConfigMigration) # 19.07.2023 #127 - 1.1.0 - services.add_transient(MigrationABC, ConfigFeatureFlagsMigration) # 15.08.2023 #334 - 1.1.0 - services.add_transient(MigrationABC, DefaultRoleMigration) # 24.09.2023 #360 - 1.1.3 - services.add_transient(MigrationABC, ShortRoleNameMigration) # 28.09.2023 #378 - 1.1.7 - services.add_transient(MigrationABC, FixUpdatesMigration) # 28.09.2023 #378 - 1.1.7 - services.add_transient(MigrationABC, ShortRoleNameOnlyHighestMigration) # 02.10.2023 #391 - 1.1.9 - services.add_transient(MigrationABC, FixUserHistoryMigration) # 10.10.2023 #401 - 1.2.0 - services.add_transient(MigrationABC, BirthdayMigration) # 10.10.2023 #401 - 1.2.0 - services.add_transient(MigrationABC, SteamSpecialOfferMigration) # 10.10.2023 #188 - 1.2.0 - services.add_transient(MigrationABC, MaxSteamOfferCountMigration) # 04.11.2023 #188 - 1.2.0 - services.add_transient(MigrationABC, MaintenanceModeMigration) # 06.11.2023 #424 - 1.2.0 diff --git a/bot/src/modules/config/events/config_on_ready_event.py b/bot/src/modules/config/events/config_on_ready_event.py index 14ad229a..87d3ec20 100644 --- a/bot/src/modules/config/events/config_on_ready_event.py +++ b/bot/src/modules/config/events/config_on_ready_event.py @@ -4,6 +4,7 @@ from cpl_discord.events import OnReadyABC from cpl_discord.service import DiscordBotServiceABC from bot_core.service.config_service import ConfigService +from bot_core.service.data_integrity_service import DataIntegrityService from bot_data.abc.server_repository_abc import ServerRepositoryABC @@ -15,6 +16,7 @@ class ConfigOnReadyEvent(OnReadyABC): bot: DiscordBotServiceABC, servers: ServerRepositoryABC, config_service: ConfigService, + data_integrity_service: DataIntegrityService, ): OnReadyABC.__init__(self) @@ -23,7 +25,10 @@ class ConfigOnReadyEvent(OnReadyABC): self._bot = bot self._servers = servers self._config_service = config_service + self._data_integrity_service = data_integrity_service async def on_ready(self): + self._data_integrity_service.check_servers() + for guild in self._bot.guilds: await self._config_service.reload_server_config(self._servers.get_server_by_discord_id(guild.id)) diff --git a/bot/tools/migration_to_sql/__init__.py b/bot/tools/migration_to_sql/__init__.py new file mode 100644 index 00000000..425ab6c1 --- /dev/null +++ b/bot/tools/migration_to_sql/__init__.py @@ -0,0 +1 @@ +# imports diff --git a/bot/tools/migration_to_sql/application.py b/bot/tools/migration_to_sql/application.py new file mode 100644 index 00000000..b9215496 --- /dev/null +++ b/bot/tools/migration_to_sql/application.py @@ -0,0 +1,15 @@ +from cpl_core.application import ApplicationABC +from cpl_core.configuration import ConfigurationABC +from cpl_core.console import Console +from cpl_core.dependency_injection import ServiceProviderABC + + +class Application(ApplicationABC): + def __init__(self, config: ConfigurationABC, services: ServiceProviderABC): + ApplicationABC.__init__(self, config, services) + + async def configure(self): + pass + + async def main(self): + Console.write_line("Finished") diff --git a/bot/tools/migration_to_sql/appsettings.json b/bot/tools/migration_to_sql/appsettings.json new file mode 100644 index 00000000..2a5f9ac8 --- /dev/null +++ b/bot/tools/migration_to_sql/appsettings.json @@ -0,0 +1,22 @@ +{ + "TimeFormatSettings": { + "DateFormat": "%Y-%m-%d", + "TimeFormat": "%H:%M:%S", + "DateTimeFormat": "%Y-%m-%d %H:%M:%S.%f", + "DateTimeLogFormat": "%Y-%m-%d_%H-%M-%S" + }, + "LoggingSettings": { + "Path": "logs/", + "Filename": "log_$start_time.log", + "ConsoleLogLevel": "ERROR", + "FileLogLevel": "WARN" + }, + "BotLoggingSettings": { + "Database": { + "Path": "logs/$date_now/", + "Filename": "database.log", + "ConsoleLogLevel": "ERROR", + "FileLogLevel": "INFO" + } + } +} diff --git a/bot/tools/migration_to_sql/main.py b/bot/tools/migration_to_sql/main.py new file mode 100644 index 00000000..93d4edf6 --- /dev/null +++ b/bot/tools/migration_to_sql/main.py @@ -0,0 +1,26 @@ +import asyncio + +from cpl_core.application import ApplicationBuilder + +from bot_data.startup_migration_extension import StartupMigrationExtension +from migration_to_sql.application import Application +from migration_to_sql.mock.database_extension import DatabaseExtension +from migration_to_sql.startup import Startup +from migration_to_sql.startup_mock_extension import StartupMockExtension + + +async def main(): + app_builder = ( + ApplicationBuilder(Application) + .use_extension(StartupMockExtension) + .use_extension(StartupMigrationExtension) + .use_extension(DatabaseExtension) + .use_startup(Startup) + ) + + app: Application = await app_builder.build_async() + await app.run_async() + + +if __name__ == "__main__": + asyncio.run(main()) diff --git a/bot/tools/migration_to_sql/migration-to-sql.json b/bot/tools/migration_to_sql/migration-to-sql.json new file mode 100644 index 00000000..5e4a62f8 --- /dev/null +++ b/bot/tools/migration_to_sql/migration-to-sql.json @@ -0,0 +1,46 @@ +{ + "ProjectSettings": { + "Name": "migration-to-sql", + "Version": { + "Major": "0", + "Minor": "0", + "Micro": "0" + }, + "Author": "", + "AuthorEmail": "", + "Description": "", + "LongDescription": "", + "URL": "", + "CopyrightDate": "", + "CopyrightName": "", + "LicenseName": "", + "LicenseDescription": "", + "Dependencies": [ + "cpl-core>=2023.10.0" + ], + "DevDependencies": [ + "cpl-cli>=2023.4.0.post3" + ], + "PythonVersion": ">=3.10.4", + "PythonPath": { + "linux": "" + }, + "Classifiers": [] + }, + "BuildSettings": { + "ProjectType": "console", + "SourcePath": "", + "OutputPath": "../../dist", + "Main": "migration_to_sql.main", + "EntryPoint": "migration-to-sql", + "IncludePackageData": false, + "Included": [], + "Excluded": [ + "*/__pycache__", + "*/logs", + "*/tests" + ], + "PackageData": {}, + "ProjectReferences": [] + } +} \ No newline at end of file diff --git a/bot/tools/migration_to_sql/mock/__init__.py b/bot/tools/migration_to_sql/mock/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/bot/tools/migration_to_sql/mock/database_extension.py b/bot/tools/migration_to_sql/mock/database_extension.py new file mode 100644 index 00000000..ca49d8b3 --- /dev/null +++ b/bot/tools/migration_to_sql/mock/database_extension.py @@ -0,0 +1,17 @@ +from datetime import datetime + +from cpl_core.application.application_extension_abc import ApplicationExtensionABC +from cpl_core.configuration import ConfigurationABC +from cpl_core.dependency_injection import ServiceProviderABC + +from migration_to_sql.mock.migration_service import MigrationService + + +class DatabaseExtension(ApplicationExtensionABC): + def __init__(self): + pass + + async def run(self, config: ConfigurationABC, services: ServiceProviderABC): + config.add_configuration("Database_StartTime", str(datetime.now())) + migrations: MigrationService = services.get_service(MigrationService) + migrations.migrate() diff --git a/bot/tools/migration_to_sql/mock/migration_service.py b/bot/tools/migration_to_sql/mock/migration_service.py new file mode 100644 index 00000000..84d6d7e6 --- /dev/null +++ b/bot/tools/migration_to_sql/mock/migration_service.py @@ -0,0 +1,53 @@ +import os +import shutil + +from cpl_core.console import Console +from cpl_core.dependency_injection import ServiceProviderABC +from cpl_query.extension import List + +from bot_data.abc.migration_abc import MigrationABC +from bot_data.model.migration_history import MigrationHistory +from migration_to_sql.mock.mock_db_context import MockDBContext + + +class MigrationService: + def __init__( + self, + services: ServiceProviderABC, + db: MockDBContext, + ): + self._services = services + + self._db = db + self._cursor = db.cursor + + # self._migrations: List[MigrationABC] = ( + # List(type, MigrationABC.__subclasses__()).order_by(lambda x: x.name.split("_")[0]).then_by(lambda x: x.prio) + # ) + + def migrate(self): + path = f"../../src/bot_data/scripts" + if not os.path.exists(path): + os.makedirs(path) + else: + shutil.rmtree(path) + os.makedirs(path) + + for migration in self._services.get_services(MigrationABC): + migration_id = type(migration).__name__ + try: + # migration_as_service: MigrationABC = self._services.get_service(migration) + # save upgrade scripts + self._db.set_migration(migration.name, True) + migration.upgrade() + self._cursor.execute(MigrationHistory(migration_id).insert_string) + self._db.save_changes() + + # save downgrade scripts + self._db.set_migration(migration.name) + migration.downgrade() + self._cursor.execute(MigrationHistory(migration_id).insert_string) + self._db.save_changes() + + except Exception as e: + Console.error(e) diff --git a/bot/tools/migration_to_sql/mock/mock_cursor.py b/bot/tools/migration_to_sql/mock/mock_cursor.py new file mode 100644 index 00000000..2f106ec3 --- /dev/null +++ b/bot/tools/migration_to_sql/mock/mock_cursor.py @@ -0,0 +1,9 @@ +from mysql.connector.cursor import MySQLCursorBuffered + + +class MockCursor(MySQLCursorBuffered): + def __init__(self): + MySQLCursorBuffered.__init__(self) + + def fetchone(self, *args, **kwargs): + pass diff --git a/bot/tools/migration_to_sql/mock/mock_db_context.py b/bot/tools/migration_to_sql/mock/mock_db_context.py new file mode 100644 index 00000000..c7f7c94e --- /dev/null +++ b/bot/tools/migration_to_sql/mock/mock_db_context.py @@ -0,0 +1,72 @@ +import os +import textwrap +from typing import Optional + +from cpl_core.database import DatabaseSettings +from cpl_core.database.context import DatabaseContextABC + +from migration_to_sql.mock.mock_cursor import MockCursor + + +class MockDBContext(DatabaseContextABC): + def __init__(self): + DatabaseContextABC.__init__(self) + self._migration_version: Optional[str] = None + self._migration_name: Optional[str] = None + self._migration_script: Optional[str] = None + + self._old_version: Optional[str] = None + self._old_name: Optional[str] = None + + self._index: int = 0 + + @property + def cursor(self) -> MockCursor: + cursor = MockCursor() + cursor.execute = self.execute + return cursor + + def set_migration(self, name: str, upgrade: bool = False): + self._migration_name = f'{name.split("_")[1].replace("Migration", "")}_{"up" if upgrade else "down"}' + self._migration_version = name.split("_")[0] + self._migration_script = "" + + def connect(self, database_settings: DatabaseSettings): + pass + + def select(self, statement: str) -> list[tuple]: + pass + + def execute(self, query: str, *args, **kwargs): + if "MigrationHistory" in query: + return None + else: + self._migration_script += f"{textwrap.dedent(query)}\n\n" + + def save_changes(self): + path = f"../../src/bot_data/scripts/{self._migration_version}" + if not os.path.exists(path): + os.makedirs(path) + + if ( + self._old_name is not None + and self._migration_name is not None + and self._old_name.split("_")[0] == self._migration_name.split("_")[0] + ): + pass + elif self._old_version == self._migration_version: + self._index += 1 + else: + self._index = 1 + + script = textwrap.dedent(self._migration_script) + with open(f"{path}/{self._index}_{self._migration_name}.sql", "w+") as f: + f.write(script) + f.close() + + self._old_version = self._migration_version + self._old_name = self._migration_name + + self._migration_name = None + self._migration_version = None + self._migration_script = None diff --git a/bot/tools/migration_to_sql/startup.py b/bot/tools/migration_to_sql/startup.py new file mode 100644 index 00000000..b63480db --- /dev/null +++ b/bot/tools/migration_to_sql/startup.py @@ -0,0 +1,47 @@ +from typing import Optional, Type, Callable + +from cpl_core.application import StartupABC +from cpl_core.configuration import ConfigurationABC +from cpl_core.dependency_injection import ServiceCollectionABC +from cpl_core.dependency_injection import ServiceProviderABC +from cpl_core.environment import ApplicationEnvironment + +from bot_core.abc.custom_file_logger_abc import CustomFileLoggerABC +from bot_core.configuration.bot_logging_settings import BotLoggingSettings +from bot_core.configuration.feature_flags_settings import FeatureFlagsSettings +from bot_core.logging.database_logger import DatabaseLogger +from migration_to_sql.mock.migration_service import MigrationService + + +class Startup(StartupABC): + def __init__(self): + StartupABC.__init__(self) + + def configure_configuration( + self, configuration: ConfigurationABC, environment: ApplicationEnvironment + ) -> ConfigurationABC: + configuration.add_json_file("appsettings.json") + configuration.add_configuration(FeatureFlagsSettings, FeatureFlagsSettings()) + self._configure_settings_with_sub_settings( + configuration, BotLoggingSettings, lambda x: x.files, lambda x: x.key + ) + return configuration + + def configure_services( + self, services: ServiceCollectionABC, environment: ApplicationEnvironment + ) -> ServiceProviderABC: + services.add_logging() + services.add_singleton(CustomFileLoggerABC, DatabaseLogger) + services.add_transient(MigrationService) + return services.build_service_provider() + + @staticmethod + def _configure_settings_with_sub_settings( + config: ConfigurationABC, settings_type: Type, list_atr: Callable, atr: Callable + ): + settings: Optional[settings_type] = config.get_configuration(settings_type) + if settings is None: + return + + for sub_settings in list_atr(settings): + config.add_configuration(f"{type(sub_settings).__name__}_{atr(sub_settings)}", sub_settings) diff --git a/bot/tools/migration_to_sql/startup_mock_extension.py b/bot/tools/migration_to_sql/startup_mock_extension.py new file mode 100644 index 00000000..0d5a4c31 --- /dev/null +++ b/bot/tools/migration_to_sql/startup_mock_extension.py @@ -0,0 +1,20 @@ +from cpl_core.application import StartupExtensionABC +from cpl_core.configuration import ConfigurationABC +from cpl_core.database import DatabaseSettings +from cpl_core.database.context import DatabaseContextABC +from cpl_core.dependency_injection import ServiceCollectionABC +from cpl_core.environment import ApplicationEnvironmentABC + +from migration_to_sql.mock.mock_db_context import MockDBContext + + +class StartupMockExtension(StartupExtensionABC): + def __init__(self): + pass + + def configure_configuration(self, config: ConfigurationABC, env: ApplicationEnvironmentABC): + pass + + def configure_services(self, services: ServiceCollectionABC, env: ApplicationEnvironmentABC): + services.add_db_context(MockDBContext, DatabaseSettings()) + services.add_transient(DatabaseContextABC, MockDBContext)