added merchants resource
This commit is contained in:
parent
d7ad5828af
commit
b5ced781c9
17 changed files with 214 additions and 80 deletions
|
|
@ -1 +1,10 @@
|
|||
export class Merchant {}
|
||||
import { Column, Entity, PrimaryGeneratedColumn } from 'typeorm';
|
||||
|
||||
@Entity()
|
||||
export class Merchant {
|
||||
@PrimaryGeneratedColumn('uuid')
|
||||
id: string;
|
||||
|
||||
@Column()
|
||||
name: string;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue