@@ -24,8 +24,8 @@ final class MigrationRecordBuilder
24
24
public const DROP_FK = MigrationRecordBuilder::INDENT . "\$this->dropForeignKey('%s', '%s'); " ;
25
25
public const DROP_PK = MigrationRecordBuilder::INDENT . "\$this->dropPrimaryKey('%s', '%s'); " ;
26
26
public const ADD_TABLE = MigrationRecordBuilder::INDENT . "\$this->createTable('%s', %s); " ;
27
- public const ADD_UNIQUE = MigrationRecordBuilder::INDENT . "\$this->createIndex('%s', '%s', '%s' , true); " ;
28
- public const ADD_INDEX = MigrationRecordBuilder::INDENT . "\$this->createIndex('%s', '%s', '%s' , %s); " ;
27
+ public const ADD_UNIQUE = MigrationRecordBuilder::INDENT . "\$this->createIndex('%s', '%s', %s , true); " ;
28
+ public const ADD_INDEX = MigrationRecordBuilder::INDENT . "\$this->createIndex('%s', '%s', %s , %s); " ;
29
29
public const DROP_COLUMN = MigrationRecordBuilder::INDENT . "\$this->dropColumn('%s', '%s'); " ;
30
30
public const ADD_ENUM = MigrationRecordBuilder::INDENT . "\$this->execute('CREATE TYPE \"enum_%s_%s \" AS ENUM(%s)'); " ;
31
31
public const DROP_ENUM = MigrationRecordBuilder::INDENT . "\$this->execute('DROP TYPE \"enum_%s_%s \"'); " ;
@@ -231,13 +231,24 @@ public function addFk(string $fkName, string $tableAlias, string $fkCol, string
231
231
232
232
public function addUniqueIndex (string $ tableAlias , string $ indexName , array $ columns ):string
233
233
{
234
- return sprintf (self ::ADD_UNIQUE , $ indexName , $ tableAlias , implode (', ' , $ columns ));
234
+ return sprintf (
235
+ self ::ADD_UNIQUE ,
236
+ $ indexName ,
237
+ $ tableAlias ,
238
+ count ($ columns ) === 1 ? "' {$ columns [0 ]}' " : '[" ' .implode ('", " ' , $ columns ).'"] '
239
+ );
235
240
}
236
241
237
242
public function addIndex (string $ tableAlias , string $ indexName , array $ columns , ?string $ using = null ):string
238
243
{
239
244
$ indexType = $ using === null ? 'false ' : "' " .ColumnToCode::escapeQuotes ($ using )."' " ;
240
- return sprintf (self ::ADD_INDEX , $ indexName , $ tableAlias , implode (', ' , $ columns ), $ indexType );
245
+ return sprintf (
246
+ self ::ADD_INDEX ,
247
+ $ indexName ,
248
+ $ tableAlias ,
249
+ count ($ columns ) === 1 ? "' {$ columns [0 ]}' " : '[" ' .implode ('", " ' , $ columns ).'"] ' ,
250
+ $ indexType
251
+ );
241
252
}
242
253
243
254
public function addPrimaryKey (string $ tableAlias , array $ columns , string $ pkName = null ):string
0 commit comments