createIndex abstract method

String createIndex(
  1. IndexInfo index, {
  2. bool ifNotExists = false,
})

Generates a CREATE INDEX statement.

With ifNotExists, an existing index with this name is left alone.

Implementation

String createIndex(IndexInfo index, {bool ifNotExists = false});