module.exports = (sequelize, DataTypes) => { const Reminder = sequelize.define("reminders", { id: { type: DataTypes.INTEGER, primaryKey: true, autoIncrement: true, allowNull: false }, name: { type: DataTypes.STRING, allowNull: false }, description: { type: DataTypes.ARRAY(DataTypes.STRING), allowNull: true }, dueAt: { type: DataTypes.DATE, allowNull: false }, sent: { type: DataTypes.BOOLEAN, allowNull: false } }, { tableName: "reminders", timestamps: false }); return Reminder; };