|
|
|
|
@ -13,31 +13,20 @@ use Closure; |
|
|
|
|
use Doctrine\DBAL\Types\Types; |
|
|
|
|
use OCP\DB\ISchemaWrapper; |
|
|
|
|
use OCP\Migration\Attributes\AddColumn; |
|
|
|
|
use OCP\Migration\Attributes\AddIndex; |
|
|
|
|
use OCP\Migration\Attributes\ColumnType; |
|
|
|
|
use OCP\Migration\Attributes\IndexType; |
|
|
|
|
use OCP\Migration\IOutput; |
|
|
|
|
use OCP\Migration\SimpleMigrationStep; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Add objecttype index to systemtag_object_mapping |
|
|
|
|
* Add etag column to systemtag |
|
|
|
|
*/ |
|
|
|
|
#[AddColumn(table: 'systemtag', name: 'etag', type: ColumnType::STRING, description: 'Adding etag for systemtag table to prevent conflicts')] |
|
|
|
|
#[AddIndex(table: 'systemtag_object_mapping', type: IndexType::INDEX, description: 'Adding objecttype index to systemtag_object_mapping')] |
|
|
|
|
class Version31000Date20241018063111 extends SimpleMigrationStep { |
|
|
|
|
|
|
|
|
|
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper { |
|
|
|
|
/** @var ISchemaWrapper $schema */ |
|
|
|
|
$schema = $schemaClosure(); |
|
|
|
|
|
|
|
|
|
if ($schema->hasTable('systemtag_object_mapping')) { |
|
|
|
|
$table = $schema->getTable('systemtag_object_mapping'); |
|
|
|
|
|
|
|
|
|
if (!$table->hasIndex('systag_objecttype')) { |
|
|
|
|
$table->addIndex(['objecttype'], 'systag_objecttype'); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if ($schema->hasTable('systemtag')) { |
|
|
|
|
$table = $schema->getTable('systemtag'); |
|
|
|
|
|
|
|
|
|
|