mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
21 lines
523 B
PHP
21 lines
523 B
PHP
|
<?php
|
||
|
|
||
|
// See T13193. We're about to drop the "documentID" column, which is part of
|
||
|
// a UNIQUE KEY. In MariaDB, we must first drop the "documentID" key or we get
|
||
|
// into deep trouble.
|
||
|
|
||
|
// There's no "IF EXISTS" modifier for "ALTER TABLE" so run this as a PHP patch
|
||
|
// instead of an SQL patch.
|
||
|
|
||
|
$table = new PhrictionContent();
|
||
|
$conn = $table->establishConnection('w');
|
||
|
|
||
|
try {
|
||
|
queryfx(
|
||
|
$conn,
|
||
|
'ALTER TABLE %T DROP KEY documentID',
|
||
|
$table->getTableName());
|
||
|
} catch (AphrontQueryException $ex) {
|
||
|
// Ignore.
|
||
|
}
|