CreateTableStatement constructor

CreateTableStatement({
  1. bool ifNotExists = false,
  2. required String tableName,
  3. List<ColumnDefinition> columns = const [],
  4. List<TableConstraint> tableConstraints = const [],
  5. bool withoutRowId = false,
  6. bool isStrict = false,
  7. DriftTableName? driftTableName,
})

Implementation

CreateTableStatement({
  bool ifNotExists = false,
  required String tableName,
  this.columns = const [],
  this.tableConstraints = const [],
  this.withoutRowId = false,
  this.isStrict = false,
  DriftTableName? driftTableName,
}) : super._(ifNotExists, tableName, driftTableName);