add card owner
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-06-15 12:55:51 +03:30
parent 5a07ea13ed
commit fb7671338a
8 changed files with 47 additions and 4 deletions
@@ -0,0 +1,13 @@
import { Migration } from '@mikro-orm/migrations';
export class Migration20260615140000_add_card_owner_to_payment_methods extends Migration {
override async up(): Promise<void> {
this.addSql(`alter table "payment_methods" add column "card_owner" varchar(255) null;`);
}
override async down(): Promise<void> {
this.addSql(`alter table "payment_methods" drop column "card_owner";`);
}
}