mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-09 20:30:54 -05:00
15 lines
264 B
TypeScript
15 lines
264 B
TypeScript
import * as Objection from "objection";
|
|
|
|
class User extends Objection.Model {
|
|
static tableName = "users";
|
|
|
|
id!: number;
|
|
username!: string;
|
|
discriminator!: string;
|
|
discordId!: string;
|
|
discordAvatar!: string;
|
|
playerId?: string;
|
|
}
|
|
|
|
export default User;
|