CreateIndexStatement constructor

CreateIndexStatement({
  1. required String indexName,
  2. bool unique = false,
  3. bool ifNotExists = false,
  4. required TableReference on,
  5. required List<IndexedColumn> columns,
  6. Expression? where,
})

Implementation

CreateIndexStatement(
    {required this.indexName,
    this.unique = false,
    this.ifNotExists = false,
    required this.on,
    required this.columns,
    this.where});