Optional
defaultOptional
defaulte.g. field: string & MySQL<{defaultExpr: 'NOW()'}>
Optional
noIf true no default column value is inferred from the property initializer/default value.
e.g. field: string & MySQL<{noDefault: true}> = ''
Optional
typee.g. field: string & MySQL<{type: 'VARCHAR(255)'}>
Generated using TypeDoc
If the property is on a class, its initializer/default value is per default used. This can be overridden using this option. e.g.
field: string & MySQL<{default: 'abc'}>