CreateTableStmt constructor

CreateTableStmt(
  1. String name,
  2. List<ColumnDef> columns, {
  3. List<TableConstraint> constraints = const [],
  4. bool ifNotExists = false,
  5. bool strict = false,
  6. bool withoutRowid = false,
  7. bool usingPaged = false,
})

Implementation

CreateTableStmt(
  this.name,
  this.columns, {
  this.constraints = const [],
  this.ifNotExists = false,
  this.strict = false,
  this.withoutRowid = false,
  this.usingPaged = false,
});