CreateTableSQL constructor
CreateTableSQL(
- SQLDialect dialect,
- String table,
- List<
SQLEntry> entries, { - String q = '"',
- List<
CreateIndexSQL> ? indexes, - List<
AlterTableSQL> ? alterTables, - List<
CreateTableSQL> ? relationships, - String? parentTable,
- EntityRepository<
Object> ? entityRepository,
Implementation
CreateTableSQL(super.dialect, super.table, super.entries,
{super.q,
this.indexes,
this.alterTables,
this.relationships,
super.parentTable,
this.entityRepository});