Create concept of currency in the database #209
3 changed files with 41 additions and 0 deletions
7
database/0.6/1713289062969-user/Up/01-table/User.sql
Normal file
7
database/0.6/1713289062969-user/Up/01-table/User.sql
Normal file
|
@ -0,0 +1,7 @@
|
|||
CREATE TABLE `user` (
|
||||
`Id` varchar(255) NOT NULL,
|
||||
`WhenCreated` datetime NOT NULL,
|
||||
`WhenUpdated` datetime NOT NULL,
|
||||
`Currency` int NOT NULL,
|
||||
PRIMARY KEY (`Id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
19
src/database/entities/app/User.ts
Normal file
19
src/database/entities/app/User.ts
Normal file
|
@ -0,0 +1,19 @@
|
|||
import { Column, Entity } from "typeorm";
|
||||
import AppBaseEntity from "../../../contracts/AppBaseEntity";
|
||||
|
||||
@Entity()
|
||||
export default class User extends AppBaseEntity {
|
||||
constructor(userId: string, currency: number) {
|
||||
super();
|
||||
|
||||
this.Id = userId;
|
||||
this.Currency = currency;
|
||||
Vylpes marked this conversation as resolved
|
||||
}
|
||||
|
||||
@Column()
|
||||
Currency: number;
|
||||
|
||||
public UpdateCurrency(currency: number) {
|
||||
this.Currency = currency;
|
||||
}
|
||||
}
|
15
src/database/migrations/app/0.6/1713289062969-user.ts
Normal file
15
src/database/migrations/app/0.6/1713289062969-user.ts
Normal file
|
@ -0,0 +1,15 @@
|
|||
import { MigrationInterface, QueryRunner } from "typeorm";
|
||||
import MigrationHelper from "../../../../helpers/MigrationHelper";
|
||||
|
||||
export class User1713289062969 implements MigrationInterface {
|
||||
|
||||
public async up(queryRunner: QueryRunner): Promise<void> {
|
||||
MigrationHelper.Up("1713289062969-user", "0.6", [
|
||||
"01-table/User",
|
||||
], queryRunner);
|
||||
}
|
||||
|
||||
public async down(): Promise<void> {
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue
Would it be worth having this as the main primary key ID? I can't see that not being unique