ColumnInfo constructor
const
ColumnInfo({})
Column information for DDL generation.
This is a simple data class that holds the information needed to generate DDL statements, decoupled from the CLI's snapshot types.
Implementation
const ColumnInfo({
required this.name,
required this.type,
required this.isNullable,
this.primaryKey = false,
this.autoIncrement = false,
this.defaultValue,
this.foreignKey,
});