fix: bill

This commit is contained in:
2026-02-17 15:44:21 +03:30
parent e905274a94
commit 2555cc12d1
9 changed files with 6910 additions and 33 deletions
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,13 @@
import { Migration } from '@mikro-orm/migrations';
export class Migration20260217121029_meterageREquired extends Migration {
override async up(): Promise<void> {
this.addSql(`select 1`);
}
override async down(): Promise<void> {
this.addSql(`select 1`);
}
}