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 67 68 | 11x 11x 11x 11x 11x 11x 11x 11x 11x 11x | import { Sequelize, DataTypes, Optional, Model, ModelStatic } from "sequelize";
export interface UserAttributes {
userID : number;
passwordHash : string;
salt : string;
}
export interface UserCreationAttributes
extends Optional<UserAttributes, "userID"> {}
class Users
extends Model<UserAttributes, UserCreationAttributes>
implements UserAttributes {
userID!: number;
passwordHash!: string;
salt!: string;
}
// Inject Sequelize
export function init(sequelize: Sequelize) {
Users.init(
{
userID : {
type: DataTypes.NUMBER,
primaryKey: true,
autoIncrement: true,
},
passwordHash : {
type: DataTypes.STRING,
unique: true,
},
salt : {
type: DataTypes.STRING,
},
},
{
sequelize,
tableName: "Users",
},
);
// do associations like
// Thing.hasMany()
return Users;
}
export function associate({
Dumpsters,
Photos,
Ratings,
PhotoReports,
DumpsterReports
}: {
Dumpsters: ModelStatic<Model<any, any>>;
Photos: ModelStatic<Model<any, any>>;
Ratings: ModelStatic<Model<any, any>>;
PhotoReports: ModelStatic<Model<any, any>>;
DumpsterReports: ModelStatic<Model<any, any>>;
}) {
// do associations like
// Thing.hasMany()
// using the supplied Models object
Users.hasMany(Dumpsters, { foreignKey: "userID"});
Users.hasMany(Photos, { foreignKey: "userID"});
Users.hasMany(Ratings, { foreignKey: "userID"});
Users.hasMany(PhotoReports, { foreignKey: "userID"});
Users.hasMany(DumpsterReports, { foreignKey: "userID"});
} |