CreateIndexSQL constructor

CreateIndexSQL(
  1. SQLDialect dialect,
  2. String table,
  3. String column,
  4. String? indexName, {
  5. String q = '"',
})

Implementation

CreateIndexSQL(SQLDialect dialect, this.table, this.column, this.indexName,
    {String q = '"'})
    : super(dialect, q);