2021-01-22 17:41:11 +00:00
|
|
|
import BaseModel from '../BaseModel';
|
2023-02-22 21:12:53 +08:00
|
|
|
import migration42 from '../migrations/42';
|
2019-05-11 17:55:40 +01:00
|
|
|
|
2024-04-05 12:16:49 +01:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
2021-01-22 17:41:11 +00:00
|
|
|
const migrationScripts: Record<number, any> = {
|
2020-11-05 16:58:23 +00:00
|
|
|
20: require('../migrations/20.js'),
|
|
|
|
27: require('../migrations/27.js'),
|
|
|
|
33: require('../migrations/33.js'),
|
2021-04-29 16:27:38 +02:00
|
|
|
35: require('../migrations/35.js'),
|
2023-02-22 21:12:53 +08:00
|
|
|
42: migration42,
|
2019-05-11 17:55:40 +01:00
|
|
|
};
|
|
|
|
|
2021-01-22 17:41:11 +00:00
|
|
|
export default class Migration extends BaseModel {
|
2023-03-06 14:22:01 +00:00
|
|
|
public static tableName() {
|
2019-05-11 17:55:40 +01:00
|
|
|
return 'migrations';
|
|
|
|
}
|
|
|
|
|
2023-03-06 14:22:01 +00:00
|
|
|
public static modelType() {
|
2019-05-11 17:55:40 +01:00
|
|
|
return BaseModel.TYPE_MIGRATION;
|
|
|
|
}
|
|
|
|
|
2023-03-06 14:22:01 +00:00
|
|
|
public static migrationsToDo() {
|
2019-05-11 17:55:40 +01:00
|
|
|
return this.modelSelectAll('SELECT * FROM migrations ORDER BY number ASC');
|
|
|
|
}
|
|
|
|
|
2023-03-06 14:22:01 +00:00
|
|
|
public static script(number: number) {
|
2019-12-29 18:58:40 +01:00
|
|
|
if (!migrationScripts[number]) throw new Error('Migration script has not been added to "migrationScripts" array');
|
2019-05-11 17:55:40 +01:00
|
|
|
return migrationScripts[number];
|
|
|
|
}
|
|
|
|
}
|