migration

This commit is contained in:
2026-01-06 09:13:11 +03:30
parent 6d216ba0d7
commit 3d6006f2e3
3 changed files with 32 additions and 9 deletions
+3 -3
View File
@@ -1045,7 +1045,7 @@
"unsigned": false,
"autoincrement": false,
"primary": false,
"nullable": false,
"nullable": true,
"length": 255,
"mappedType": "string"
},
@@ -1055,7 +1055,7 @@
"unsigned": false,
"autoincrement": false,
"primary": false,
"nullable": false,
"nullable": true,
"length": 6,
"mappedType": "datetime"
},
@@ -1065,7 +1065,7 @@
"unsigned": false,
"autoincrement": false,
"primary": false,
"nullable": false,
"nullable": true,
"length": 6,
"mappedType": "datetime"
}
@@ -0,0 +1,23 @@
import { Migration } from '@mikro-orm/migrations';
export class Migration20260106054151 extends Migration {
override async up(): Promise<void> {
this.addSql(`alter table "restaurants" alter column "subscription_id" type varchar(255) using ("subscription_id"::varchar(255));`);
this.addSql(`alter table "restaurants" alter column "subscription_id" drop not null;`);
this.addSql(`alter table "restaurants" alter column "subscription_end_date" type timestamptz using ("subscription_end_date"::timestamptz);`);
this.addSql(`alter table "restaurants" alter column "subscription_end_date" drop not null;`);
this.addSql(`alter table "restaurants" alter column "subscription_start_date" type timestamptz using ("subscription_start_date"::timestamptz);`);
this.addSql(`alter table "restaurants" alter column "subscription_start_date" drop not null;`);
}
override async down(): Promise<void> {
this.addSql(`alter table "restaurants" alter column "subscription_id" type varchar(255) using ("subscription_id"::varchar(255));`);
this.addSql(`alter table "restaurants" alter column "subscription_id" set not null;`);
this.addSql(`alter table "restaurants" alter column "subscription_end_date" type timestamptz using ("subscription_end_date"::timestamptz);`);
this.addSql(`alter table "restaurants" alter column "subscription_end_date" set not null;`);
this.addSql(`alter table "restaurants" alter column "subscription_start_date" type timestamptz using ("subscription_start_date"::timestamptz);`);
this.addSql(`alter table "restaurants" alter column "subscription_start_date" set not null;`);
}
}
@@ -100,13 +100,13 @@ export class Restaurant extends BaseEntity {
@Enum(() => PlanEnum)
plan: PlanEnum = PlanEnum.Base;
@Property({unique: true})
subscriptionId!: string;
@Property({unique: true,nullable: true})
subscriptionId?: string;
@Property()
subscriptionEndDate!: Date;
@Property({nullable: true})
subscriptionEndDate?: Date;
@Property()
subscriptionStartDate!: Date;
@Property({nullable: true})
subscriptionStartDate?: Date;
}