From eba1d96e47cb96819f8b72f16308f67ac3e31272 Mon Sep 17 00:00:00 2001 From: monmon Date: Tue, 12 Feb 2019 07:54:41 +0900 Subject: [PATCH] Missing `DefineOptions`.`rowFormat` property Added missing property `rowFormat` to `DefineOptions` type. --- types/sequelize/index.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/sequelize/index.d.ts b/types/sequelize/index.d.ts index dc8614cb68..5d1131684c 100644 --- a/types/sequelize/index.d.ts +++ b/types/sequelize/index.d.ts @@ -5274,6 +5274,11 @@ declare namespace sequelize { collate?: string; + /** + * Specify the ROW_FORMAT for use with the MySQL InnoDB engine. + */ + rowFormat?: string; + /** * Set the initial AUTO_INCREMENT value for the table in MySQL. */