From 6562e68a6be03050c9e2b837c0df8df9362dce7f Mon Sep 17 00:00:00 2001 From: Stefan Andres Charsley Date: Fri, 6 Apr 2018 18:37:44 +1200 Subject: [PATCH] Update index.d.ts (#244) - Fix comment not being optional --- index.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.d.ts b/index.d.ts index a46db21f..377b5428 100644 --- a/index.d.ts +++ b/index.d.ts @@ -44,7 +44,7 @@ export interface ColumnDefinition { match?: 'FULL' | 'SIMPLE' deferrable?: boolean deferred?: boolean - comment: string | null + comment?: string | null } export interface TableOptions { @@ -53,7 +53,7 @@ export interface TableOptions { inherits?: Name like?: Name constraints?: ConstraintOptions - comment: string | null + comment?: string | null } export interface ColumnOptions { @@ -63,7 +63,7 @@ export interface ColumnOptions { allowNull?: boolean collation?: string using?: string - comment: string | null + comment?: string | null } export interface CreateIndexOptions {