11 lines
376 B
TypeScript
11 lines
376 B
TypeScript
import { CreationOptional, InferAttributes, InferCreationAttributes, Model } from "sequelize";
|
|
|
|
export class Unit extends Model<InferAttributes<Unit>, InferCreationAttributes<Unit>> {
|
|
declare user_id: string
|
|
declare character_id: number
|
|
declare stat1: number
|
|
declare stat2: number
|
|
declare stat3: number
|
|
declare stat4: number
|
|
declare stat5: number
|
|
} |