diff --git a/lib/sequelize.d.ts b/lib/sequelize.d.ts index 66d0971..ad0cbbe 100644 --- a/lib/sequelize.d.ts +++ b/lib/sequelize.d.ts @@ -31,6 +31,11 @@ export interface SyncOptions extends Logging { */ force?: boolean + /** + * This checks what is the current state of the table in the database (which columns it has, what are their data types, etc), and then performs the necessary changes in the table to make it match the model. + */ + alter?: boolean + /** * Match a regex against the database name before syncing, a safety check for cases where force: true is * used in tests but not live code