SchemaColumn constructor

const SchemaColumn({
  1. required String name,
  2. required String dataType,
  3. String? schema,
  4. String? tableName,
  5. int? length,
  6. int? numericPrecision,
  7. int? numericScale,
  8. bool nullable = true,
  9. String? defaultValue,
  10. bool autoIncrement = false,
  11. bool primaryKey = false,
  12. String? comment,
  13. String? generatedExpression,
})

Implementation

const SchemaColumn({
  required this.name,
  required this.dataType,
  this.schema,
  this.tableName,
  this.length,
  this.numericPrecision,
  this.numericScale,
  this.nullable = true,
  this.defaultValue,
  this.autoIncrement = false,
  this.primaryKey = false,
  this.comment,
  this.generatedExpression,
});