WIP: Add UserSetting entity
All checks were successful
Test / build (push) Successful in 6s

This commit is contained in:
Ethan Lane 2024-09-25 19:03:16 +01:00
parent 06eb7dbbb1
commit 789d5d6410
3 changed files with 61 additions and 0 deletions

View file

@ -0,0 +1,15 @@
import { MigrationInterface, QueryRunner } from "typeorm";
import MigrationHelper from "../../../helpers/MigrationHelper";
export class CreateUserSetting1727286976268 implements MigrationInterface {
public async up(queryRunner: QueryRunner): Promise<void> {
MigrationHelper.Up('1727286976268-CreateUserSetting', '3.3.0', [
"01-UserSetting",
], queryRunner);
}
public async down(queryRunner: QueryRunner): Promise<void> {
}
}