mirror of
https://example.com
synced 2024-11-23 07:36:40 +09:00
11 lines
309 B
JavaScript
11 lines
309 B
JavaScript
|
export class CustomMOTD1658939464003 {
|
||
|
async up(queryRunner) {
|
||
|
await queryRunner.query(
|
||
|
`ALTER TABLE "meta" ADD "customMOTD" character varying(256) array NOT NULL DEFAULT '{}'::varchar[]`,
|
||
|
);
|
||
|
}
|
||
|
async down(queryRunner) {
|
||
|
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "customMOTD"`);
|
||
|
}
|
||
|
}
|