The data type of the column as reported by the database.
NOTE: This value is whatever the database engine returns and it will be
different on different dialects even if you run the same migrations.
For example integer datatype in a migration will produce int4
on PostgreSQL, INTEGER on SQLite and int on MySQL.
OptionalReadonlydataTypeSchema
dataTypeSchema?:string
The schema this column's data type was created in.
The data type of the column as reported by the database.
NOTE: This value is whatever the database engine returns and it will be different on different dialects even if you run the same migrations. For example
integer
datatype in a migration will produceint4
on PostgreSQL,INTEGER
on SQLite andint
on MySQL.