14 lines
262 B
TypeScript
14 lines
262 B
TypeScript
import { Column, Entity, PrimaryColumn } from "typeorm";
|
|
|
|
@Entity("username_history")
|
|
export class UsernameHistoryEntry {
|
|
@Column()
|
|
@PrimaryColumn()
|
|
id: string;
|
|
|
|
@Column() user_id: string;
|
|
|
|
@Column() username: string;
|
|
|
|
@Column() timestamp: string;
|
|
}
|