mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
7f497d3e67
Co-authored-by: Syuilo <syuilotan@yahoo.co.jp>
15 lines
336 B
JavaScript
15 lines
336 B
JavaScript
export class DonationLink1689136347561 {
|
|
name = "DonationLink1689136347561";
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "meta" ADD "donationLink" character varying(256)`,
|
|
);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "meta" DROP COLUMN "DonationLink1689136347561"`,
|
|
);
|
|
}
|
|
}
|