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