mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 09:23:08 +02:00
18 lines
333 B
TypeScript
18 lines
333 B
TypeScript
|
import { PrimaryColumn, Entity, Index, Column } from 'typeorm';
|
||
|
import { id } from '../id';
|
||
|
|
||
|
@Entity()
|
||
|
export class RegistrationTicket {
|
||
|
@PrimaryColumn(id())
|
||
|
public id: string;
|
||
|
|
||
|
@Column('timestamp with time zone')
|
||
|
public createdAt: Date;
|
||
|
|
||
|
@Index({ unique: true })
|
||
|
@Column('varchar', {
|
||
|
length: 64,
|
||
|
})
|
||
|
public code: string;
|
||
|
}
|