diff --git a/database/0.6/1713289062969-user/Up/01-table/User.sql b/database/0.6/1713289062969-user/Up/01-table/User.sql deleted file mode 100644 index aa7c36b..0000000 --- a/database/0.6/1713289062969-user/Up/01-table/User.sql +++ /dev/null @@ -1,8 +0,0 @@ -CREATE TABLE `user` ( - `Id` varchar(255) NOT NULL, - `WhenCreated` datetime NOT NULL, - `WhenUpdated` datetime NOT NULL, - `UserId` varchar(255) NOT NULL, - `Currency` int NOT NULL, - PRIMARY KEY (`Id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; \ No newline at end of file diff --git a/src/database/entities/app/User.ts b/src/database/entities/app/User.ts deleted file mode 100644 index 26d1303..0000000 --- a/src/database/entities/app/User.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { Column, Entity } from "typeorm"; -import AppBaseEntity from "../../../contracts/AppBaseEntity"; -import AppDataSource from "../../dataSources/appDataSource"; - -@Entity() -export default class User extends AppBaseEntity { - constructor(userId: string, currency: number) { - super(); - - this.UserId = userId; - this.Currency = currency; - } - - @Column() - UserId: string; - - @Column() - Currency: number; - - public UpdateCurrency(currency: number) { - this.Currency = currency; - } - - public static async FetchOneByUserId(userId: string): Promise { - const repository = AppDataSource.getRepository(User); - - const single = await repository.findOne({ where: { UserId: userId }}); - - return single; - } -} \ No newline at end of file diff --git a/src/database/migrations/app/0.6/1713289062969-user.ts b/src/database/migrations/app/0.6/1713289062969-user.ts deleted file mode 100644 index 151db88..0000000 --- a/src/database/migrations/app/0.6/1713289062969-user.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { MigrationInterface, QueryRunner } from "typeorm"; -import MigrationHelper from "../../../../helpers/MigrationHelper"; - -export class User1713289062969 implements MigrationInterface { - - public async up(queryRunner: QueryRunner): Promise { - MigrationHelper.Up("1713289062969-user", "0.6", [ - "01-table/User", - ], queryRunner); - } - - public async down(): Promise { - } - -}