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 { PhotoAttributes, PhotoCreationAttributes } from "./Photos"; import { UserAttributes, UserCreationAttributes } from "./Users"; export interface PhotoReportAttributes { photoID: number; userID: number; reason: string; date: string; } export interface PhotoReportCreationAttributes extends PhotoReportAttributes {} export class PhotoReports extends Model<PhotoReportAttributes, PhotoReportCreationAttributes> implements PhotoReportAttributes { public photoID!: number; public userID!: number; public reason!: string; public date!: string; } // Inject Sequelize export function init(sequelize: Sequelize) { PhotoReports.init( { photoID: { type: DataTypes.INTEGER.UNSIGNED, primaryKey: true, }, userID: { type: DataTypes.NUMBER, primaryKey: true, }, reason: { type: DataTypes.STRING, allowNull: false, }, date: { type: DataTypes.DATE, allowNull: false, defaultValue: Sequelize.fn('now'), } }, { sequelize, tableName: "PhotoReports", }, ); return PhotoReports; } // The type is not defined yet, so use a substitute export function associate({ Photos, Users }: { Photos: ModelStatic<Model<PhotoAttributes, PhotoCreationAttributes>>; Users: ModelStatic<Model<UserAttributes, UserCreationAttributes>>; }) { // do associations like // Thing.hasMany() // using the supplied Models object } |