CreateTableSQL constructor

CreateTableSQL(
  1. SQLDialect dialect,
  2. String table,
  3. List<SQLEntry> entries, {
  4. String q = '"',
  5. List<CreateIndexSQL>? indexes,
  6. List<AlterTableSQL>? alterTables,
  7. List<CreateTableSQL>? relationships,
  8. String? parentTable,
  9. EntityRepository<Object>? entityRepository,
})

Implementation

CreateTableSQL(super.dialect, super.table, super.entries,
    {super.q,
    this.indexes,
    this.alterTables,
    this.relationships,
    super.parentTable,
    this.entityRepository});