statement method

String statement(
  1. String tableName
)

Implementation

String statement(String tableName) {
  return '${unique ? 'UNIQUE' : ''} INDEX "__$name" '
      'ON "$tableName" USING ${algorithm.toString().split(".")[1]} ( $joinedColumns ) '
      '${condition != null ? 'WHERE $condition' : ''}';
}