2019-04-18 05:28:17 -04:00
|
|
|
import { ModelAttributeColumnOptions } from 'sequelize'
|
2018-07-25 16:01:25 -04:00
|
|
|
|
|
|
|
declare namespace Migration {
|
2019-04-18 05:28:17 -04:00
|
|
|
interface Boolean extends ModelAttributeColumnOptions {
|
2018-07-25 16:01:25 -04:00
|
|
|
defaultValue: boolean | null
|
|
|
|
}
|
|
|
|
|
2019-04-18 05:28:17 -04:00
|
|
|
interface String extends ModelAttributeColumnOptions {
|
2018-07-25 16:01:25 -04:00
|
|
|
defaultValue: string | null
|
|
|
|
}
|
|
|
|
|
2019-04-18 05:28:17 -04:00
|
|
|
interface Integer extends ModelAttributeColumnOptions {
|
2018-07-25 16:01:25 -04:00
|
|
|
defaultValue: number | null
|
|
|
|
}
|
|
|
|
|
2019-04-18 05:28:17 -04:00
|
|
|
interface BigInteger extends ModelAttributeColumnOptions {
|
|
|
|
defaultValue: number | null
|
2018-07-25 16:01:25 -04:00
|
|
|
}
|
2018-07-26 04:45:10 -04:00
|
|
|
|
2019-04-18 05:28:17 -04:00
|
|
|
interface UUID extends ModelAttributeColumnOptions {
|
|
|
|
defaultValue: null
|
2018-07-26 04:45:10 -04:00
|
|
|
}
|
2018-07-25 16:01:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
Migration
|
|
|
|
}
|