ColumnSchema constructor

const ColumnSchema({
  1. required String name,
  2. required String type,
  3. bool nullable = true,
  4. bool primaryKey = false,
  5. bool unique = false,
  6. String? defaultValue,
  7. bool autoIncrement = false,
})

Implementation

const ColumnSchema({
  required this.name,
  required this.type,
  this.nullable = true,
  this.primaryKey = false,
  this.unique = false,
  this.defaultValue,
  this.autoIncrement = false,
});