mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-10 12:25:02 +00:00
14 lines
224 B
TypeScript
14 lines
224 B
TypeScript
import { Column, Entity, PrimaryColumn } from "typeorm";
|
|
|
|
@Entity("supporters")
|
|
export class Supporter {
|
|
@Column()
|
|
@PrimaryColumn()
|
|
user_id: string;
|
|
|
|
@Column()
|
|
name: string;
|
|
|
|
@Column()
|
|
amount: string | null;
|
|
}
|