mirror of
https://github.com/MrSedan/neuro-reply-website.git
synced 2026-01-14 20:49:42 +03:00
Changed the primary key of the Payment entity from a UUID to an incrementing integer.
This commit is contained in:
@@ -3,8 +3,8 @@ import { ProxyUser } from './proxy_user.entity';
|
|||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
export class Payment {
|
export class Payment {
|
||||||
@PrimaryGeneratedColumn('uuid')
|
@PrimaryGeneratedColumn('increment')
|
||||||
public id!: string;
|
public id!: number;
|
||||||
|
|
||||||
@Column()
|
@Column()
|
||||||
public uuidUser!: string;
|
public uuidUser!: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user