mirror of
https://github.com/thedrewen/protojx-manager.git
synced 2026-03-21 09:48:56 +01:00
16 lines
289 B
TypeScript
16 lines
289 B
TypeScript
import { Column, Entity, PrimaryGeneratedColumn } from "typeorm";
|
|
|
|
@Entity({name: 'follows'})
|
|
export class Follow {
|
|
@PrimaryGeneratedColumn()
|
|
id: number;
|
|
|
|
@Column()
|
|
user_discord: string;
|
|
|
|
@Column()
|
|
host: string;
|
|
|
|
@Column({default: false})
|
|
enable: boolean;
|
|
} |