summaryrefslogtreecommitdiff
path: root/packages/backend/migration/1676438468213-ad3.js
blob: 18f56e8d3667a83d000486aca39208ff6d951a2a (plain)
1
2
3
4
5
6
7
8
9
export class ad1676438468213 {
	name = 'ad1676438468213';
	async up(queryRunner) {
			await queryRunner.query(`ALTER TABLE "ad" ADD "startsAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now()`);
	}
	async down(queryRunner) {
		await queryRunner.query(`ALTER TABLE "ad" DROP COLUMN "startsAt"`);
	}
}