We remove any remaining migrations from the upgrade.go file

```release-note
NONE
```
Этот коммит содержится в:
Agniva De Sarker
2022-06-02 22:53:12 +05:30
коммит произвёл GitHub
родитель c92cbb606a
Коммит ec0284b459
15 изменённых файлов: 185 добавлений и 985 удалений

Просмотреть файл

@@ -0,0 +1 @@
-- Skipping it because the forward migrations are destructive

Просмотреть файл

@@ -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 $$;