mailpot/core/src/migrations.rs.inc

11 lines
377 B
PHP
Raw Normal View History

2023-05-05 12:29:21 +03:00
//(user_version, redo sql, undo sql
&[(1,"PRAGMA foreign_keys=ON;
ALTER TABLE templates RENAME TO template;
","PRAGMA foreign_keys=ON;
ALTER TABLE template RENAME TO templates;
2023-05-18 10:34:00 +03:00
"),(2,"PRAGMA foreign_keys=ON;
ALTER TABLE list ADD COLUMN topics JSON NOT NULL CHECK (json_type(topics) == 'array') DEFAULT '[]';
","PRAGMA foreign_keys=ON;
ALTER TABLE list DROP COLUMN topics;
2023-05-05 12:29:21 +03:00
"),]