MM-44638: Remove upgrade.go (#20309)
We remove any remaining migrations from the upgrade.go file ```release-note NONE ```
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
c92cbb606a
Коммит
ec0284b459
1
db/migrations/mysql/000088_remaining_migrations.down.sql
Обычный файл
1
db/migrations/mysql/000088_remaining_migrations.down.sql
Обычный файл
@@ -0,0 +1 @@
|
||||
-- Skipping it because the forward migrations are destructive.
|
||||
36
db/migrations/mysql/000088_remaining_migrations.up.sql
Обычный файл
36
db/migrations/mysql/000088_remaining_migrations.up.sql
Обычный файл
@@ -0,0 +1,36 @@
|
||||
DROP TABLE IF EXISTS JobStatuses;
|
||||
|
||||
DROP TABLE IF EXISTS PasswordRecovery;
|
||||
|
||||
SET @preparedStatement = (SELECT IF(
|
||||
(
|
||||
SELECT COUNT(*) FROM INFORMATION_SCHEMA.COLUMNS
|
||||
WHERE table_name = 'Users'
|
||||
AND table_schema = DATABASE()
|
||||
AND column_name = 'ThemeProps'
|
||||
) > 0,
|
||||
'INSERT INTO Preferences(UserId, Category, Name, Value) SELECT Id, \'\', \'\', ThemeProps FROM Users WHERE Users.ThemeProps != \'null\'',
|
||||
'SELECT 1'
|
||||
));
|
||||
|
||||
PREPARE migrateTheme FROM @preparedStatement;
|
||||
EXECUTE migrateTheme;
|
||||
DEALLOCATE PREPARE migrateTheme;
|
||||
|
||||
-- We have to do this twice because the prepared statement doesn't support multiple SQL queries
|
||||
-- in a single string.
|
||||
|
||||
SET @preparedStatement = (SELECT IF(
|
||||
(
|
||||
SELECT COUNT(*) FROM INFORMATION_SCHEMA.COLUMNS
|
||||
WHERE table_name = 'Users'
|
||||
AND table_schema = DATABASE()
|
||||
AND column_name = 'ThemeProps'
|
||||
) > 0,
|
||||
'ALTER TABLE Users DROP COLUMN ThemeProps',
|
||||
'SELECT 1'
|
||||
));
|
||||
|
||||
PREPARE migrateTheme FROM @preparedStatement;
|
||||
EXECUTE migrateTheme;
|
||||
DEALLOCATE PREPARE migrateTheme;
|
||||
1
db/migrations/postgres/000088_remaining_migrations.down.sql
Обычный файл
1
db/migrations/postgres/000088_remaining_migrations.down.sql
Обычный файл
@@ -0,0 +1 @@
|
||||
-- Skipping it because the forward migrations are destructive
|
||||
27
db/migrations/postgres/000088_remaining_migrations.up.sql
Обычный файл
27
db/migrations/postgres/000088_remaining_migrations.up.sql
Обычный файл
@@ -0,0 +1,27 @@
|
||||
DROP TABLE IF EXISTS jobstatuses;
|
||||
|
||||
DROP TABLE IF EXISTS passwordrecovery;
|
||||
|
||||
DO $$
|
||||
<<migrate_theme>>
|
||||
DECLARE
|
||||
col_exist boolean := false;
|
||||
BEGIN
|
||||
SELECT count(*) != 0 INTO col_exist
|
||||
FROM information_schema.columns
|
||||
WHERE table_name = 'users'
|
||||
AND column_name = 'themeprops';
|
||||
|
||||
IF col_exist THEN
|
||||
INSERT INTO
|
||||
preferences(userid, category, name, value)
|
||||
SELECT
|
||||
id, '', '', themeprops
|
||||
FROM
|
||||
users
|
||||
WHERE
|
||||
users.themeprops != 'null';
|
||||
|
||||
ALTER TABLE users DROP COLUMN themeprops;
|
||||
END IF;
|
||||
END migrate_theme $$;
|
||||
Ссылка в новой задаче
Block a user