mirror of
https://example.com
synced 2024-11-23 07:16:38 +09:00
15 lines
332 B
JavaScript
15 lines
332 B
JavaScript
|
export class apUrl1585772678853 {
|
||
|
constructor() {
|
||
|
this.name = "apUrl1585772678853";
|
||
|
}
|
||
|
async up(queryRunner) {
|
||
|
await queryRunner.query(
|
||
|
`ALTER TABLE "note" ADD "url" character varying(512)`,
|
||
|
undefined,
|
||
|
);
|
||
|
}
|
||
|
async down(queryRunner) {
|
||
|
await queryRunner.query(`ALTER TABLE "note" DROP COLUMN "url"`, undefined);
|
||
|
}
|
||
|
}
|