Skip to content

Commit

Permalink
Merge pull request #48986 from nextcloud/feat/systemtags-missing-attrs
Browse files Browse the repository at this point in the history
  • Loading branch information
provokateurin authored Oct 30, 2024
2 parents dac15d1 + d5475e9 commit d3910a4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions core/Migrations/Version31000Date20241018063111.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,18 @@
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
*/
#[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 {

/**
Expand Down

0 comments on commit d3910a4

Please sign in to comment.