TableEntity constructor

TableEntity({
  1. List<ColumnEntity>? columns,
  2. String? comment,
  3. List<ConstraintEntity>? constraints,
  4. Map<String, Object?>? customFeatures,
  5. List<IndexEntity>? indices,
  6. List<TriggerEntity>? triggers,
})

Implementation

TableEntity({
  this.columns,
  this.comment,
  this.constraints,
  this.customFeatures,
  this.indices,
  this.triggers,
});