parent
d586d1e6f8
commit
2f99c7e9dc
27 changed files with 387 additions and 4 deletions
11
packages/backend/migration/1701647674000-BubbleInstances.js
Normal file
11
packages/backend/migration/1701647674000-BubbleInstances.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
export class BubbleInstances1701647674000 {
|
||||
name = 'BubbleInstances1701647674000'
|
||||
|
||||
async up(queryRunner) {
|
||||
await queryRunner.query(`ALTER TABLE "meta" ADD "bubbleInstances" character varying(256) array NOT NULL DEFAULT '{}'::varchar[]`);
|
||||
}
|
||||
|
||||
async down(queryRunner) {
|
||||
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "bubbleInstances"`);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue