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()
|
||||
export class Payment {
|
||||
@PrimaryGeneratedColumn('uuid')
|
||||
public id!: string;
|
||||
@PrimaryGeneratedColumn('increment')
|
||||
public id!: number;
|
||||
|
||||
@Column()
|
||||
public uuidUser!: string;
|
||||
|
||||
Reference in New Issue
Block a user