v2.2.0 RELEASE!

Small bugfix 2.2
This commit is contained in:
GaMeNu 2023-10-20 17:26:49 +03:00
parent f6c54ec9c2
commit b6dfa42592

View File

@ -13,10 +13,22 @@ DB_PASSWORD = os.getenv('DB_PASSWORD')
def updater_1_0_0(connection: mysql.connection.MySQLConnection) -> str: def updater_1_0_0(connection: mysql.connection.MySQLConnection) -> str:
crsr = connection.cursor() with connection.cursor() as crsr:
crsr.execute("ALTER TABLE `hfc_db`.`channels` DROP COLUMN IF EXISTS locations") crsr.execute("SELECT COLUMN_NAME "
crsr.execute("ALTER TABLE `hfc_db`.`channels` ADD COLUMN `locations` JSON NOT NULL DEFAULT ('[]');") "FROM INFORMATION_SCHEMA.COLUMNS "
crsr.close() "WHERE TABLE_SCHEMA = 'hfc_db' "
"AND TABLE_NAME = 'channels' "
"AND COLUMN_NAME = 'locations';")
exists = (crsr.fetchone() is not None)
crsr.nextset()
if exists:
crsr.execute("ALTER TABLE `hfc_db`.`channels` DROP COLUMN `locations`;")
crsr.execute("ALTER TABLE `hfc_db`.`channels` ADD COLUMN `locations` JSON NOT NULL DEFAULT ('[]');")
return '1.0.1' return '1.0.1'