OptionalcharsetThe charset to use for the model
OptionalcollateThe collation for model's table
OptionalcommentA comment for the table.
MySQL, PG only.
OptionalcreatedOverride the name of the createdAt attribute if a string is provided, or disable it if false. ModelOptions.timestamps must be true.
Not affected by underscored setting.
OptionaldefaultDefine the default search scope to use for this model. Scopes have the same form as the options passed to find / findAll.
See https://sequelize.org/docs/v7/other-topics/scopes/ to learn more about scopes.
OptionaldeletedOverride the name of the deletedAt attribute if a string is provided, or disable it if false. ModelOptions.timestamps must be true. ModelOptions.paranoid must be true.
Not affected by underscored setting.
OptionalengineThe name of the database storage engine to use (e.g. MyISAM, InnoDB).
MySQL, MariaDB only.
OptionalfreezeIf true, sequelize will use the name of the Model as-is as the name of the SQL table. If false, the name of the table will be pluralised (and snake_cased if ModelOptions.underscored is true).
This option has no effect if ModelOptions.tableName is set.
OptionalhasIndicates if the model's table has a trigger associated with it.
OptionalhooksAdd hooks to the model. Hooks will be called before and after certain operations.
This can also be done through Model.addHook, or the individual hook methods such as Model.afterBulkCreate. Each property can either be a function, or an array of functions.
OptionalindexesIndexes for the provided database table
OptionalinitialSet the initial AUTO_INCREMENT value for the table in MySQL.
OptionalmodelThe name of the model.
If not set, the name of the class will be used instead. You should specify this option if you are going to minify your code in a way that may mangle the class name.
Not inherited.
OptionalnameAn object with two attributes, singular and plural, which are used when this model is associated to others.
Not inherited.
OptionalnoSequelize will automatically add a primary key called id if no
primary key has been added manually.
Set to false to disable adding that primary key.
OptionalomitDon't persist null values. This means that all columns with null values will not be saved.
OptionalparanoidIf true, calling Model.destroy will not delete the model, but will instead set a deletedAt timestamp.
This options requires ModelOptions.timestamps to be true.
The deletedAt column can be customized through ModelOptions.deletedAt.
OptionalschemaThe database schema in which this table will be located.
OptionalschemaOptionalscopesMore scopes, defined in the same way as ModelOptions.defaultScope above. See Model.scope for more information about how scopes are defined, and what you can do with them.
See https://sequelize.org/docs/v7/other-topics/scopes/ to learn more about scopes.
The sequelize connection. Required ATM.
OptionaltableThe name of the table in SQL.
The ModelOptions.modelName, pluralized, unless freezeTableName is true, in which case it uses model name verbatim.
Not inherited.
OptionaltimestampsAdds createdAt and updatedAt timestamps to the model.
OptionalunderscoredIf true, Sequelize will snake_case the name of columns that do not have an explicit value set (using AttributeOptions.field). The name of the table will also be snake_cased, unless ModelOptions.tableName is set, or ModelOptions.freezeTableName is true.
OptionalupdatedOverride the name of the updatedAt attribute if a string is provided, or disable it if false. ModelOptions.timestamps must be true.
Not affected by underscored setting.
OptionalvalidateAn object of model wide validations. Validations have access to all model values via this. If the
validator function takes an argument, it is assumed to be async, and is called with a callback that
accepts an optional error.
Custom validation functions run on all instances of the model.
OptionalversionEnable optimistic locking. When enabled, sequelize will add a version count attribute to the model and throw an OptimisticLockingError error when stale instances are saved.
version.
Options passed to Model.init