Skip to content

Commit

Permalink
Update index.d.ts (#244)
Browse files Browse the repository at this point in the history
- Fix comment not being optional
  • Loading branch information
charsleysa authored and dolezel committed Apr 6, 2018
1 parent 7f0e207 commit 6562e68
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export interface ColumnDefinition {
match?: 'FULL' | 'SIMPLE'
deferrable?: boolean
deferred?: boolean
comment: string | null
comment?: string | null
}

export interface TableOptions {
Expand All @@ -53,7 +53,7 @@ export interface TableOptions {
inherits?: Name
like?: Name
constraints?: ConstraintOptions
comment: string | null
comment?: string | null
}

export interface ColumnOptions {
Expand All @@ -63,7 +63,7 @@ export interface ColumnOptions {
allowNull?: boolean
collation?: string
using?: string
comment: string | null
comment?: string | null
}

export interface CreateIndexOptions {
Expand Down

0 comments on commit 6562e68

Please sign in to comment.