9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
import {BaseEntity} from './BaseEntity'
|
|
import {Column, Entity} from 'typeorm'
|
|
|
|
@Entity()
|
|
export class Role extends BaseEntity {
|
|
@Column({ unique: true })
|
|
name!: string
|
|
}
|