First commit

This commit is contained in:
2026-03-18 22:42:33 +09:00
commit 50657066a6
64 changed files with 5290 additions and 0 deletions
@@ -0,0 +1,13 @@
import { Migration } from '@mikro-orm/migrations';
export class Migration20260302212455 extends Migration {
override async up(): Promise<void> {
this.addSql(`alter table "user" add column "password" varchar(60) not null;`);
}
override async down(): Promise<void> {
this.addSql(`alter table "user" drop column "password";`);
}
}