Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | 11x 11x 11x 11x 11x 11x | import { Sequelize, DataTypes, Optional, Model, ModelStatic } from "sequelize";
import { UserAttributes, UserCreationAttributes } from "./Users";
import {
DumpsterPositionAttributes,
DumpsterPositionCreationAttributes,
} from "./DumpsterPositions";
export interface ReportsAttributes {
dumpsterID: number;
userID: number;
reason: string;
date: string;
}
export interface ReportsCreationAttributes
extends Optional<
ReportsAttributes,
"reason" | "date"
> {}
export class Reports extends Model<ReportsAttributes, ReportsCreationAttributes>
implements ReportsAttributes {
public dumpsterID!: number;
public userID!: number;
public reason!: string;
public date!: string;
}
export function init(sequelize: Sequelize) {
Reports.init(
{
dumpsterID: {
type: DataTypes.INTEGER.UNSIGNED,
primaryKey: true,
},
userID: {
type: DataTypes.INTEGER.UNSIGNED,
primaryKey: true,
},
reason: {
type: DataTypes.STRING,
allowNull: true,
},
date: {
type: DataTypes.DATE,
allowNull: false,
defaultValue: Sequelize.fn("now"),
},
},
{ sequelize, tableName: "DumpsterReports" },
);
return Reports;
}
export function associate({
DumpsterPositions,
Users,
}: {
DumpsterPositions: ModelStatic<
Model<DumpsterPositionAttributes, DumpsterPositionCreationAttributes>
>;
Users: ModelStatic<Model<UserAttributes, UserCreationAttributes>>;
}) {
//The fuck imma do here?
}
|