feat: long instance descriptions (#5)
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
/** @type {import('typeorm').MigrationInterface} */
|
||||
export class AddLongdescriptionToMeta1744316999807 {
|
||||
name = 'AddLongdescriptionToMeta1744316999807'
|
||||
|
||||
async up(queryRunner) {
|
||||
await queryRunner.query(`ALTER TABLE "meta" ADD "longDescription" character varying(4096)`);
|
||||
}
|
||||
|
||||
async down(queryRunner) {
|
||||
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "longDescription"`);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user