Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Migration/Version2000Date20201208130255.php')
-rw-r--r--lib/Migration/Version2000Date20201208130255.php41
1 files changed, 0 insertions, 41 deletions
diff --git a/lib/Migration/Version2000Date20201208130255.php b/lib/Migration/Version2000Date20201208130255.php
index a36f9b5..dc6d710 100644
--- a/lib/Migration/Version2000Date20201208130255.php
+++ b/lib/Migration/Version2000Date20201208130255.php
@@ -32,47 +32,6 @@ class Version2000Date20201208130255 extends SimpleMigrationStep {
/** @var ISchemaWrapper $schema */
$schema = $schemaClosure();
- if (!$schema->hasTable('fulltextsearch_indexes')) {
- $table = $schema->createTable('fulltextsearch_indexes');
- $table->addColumn('provider_id', 'string', [
- 'notnull' => true,
- 'length' => 255,
- ]);
- $table->addColumn('document_id', 'string', [
- 'notnull' => true,
- 'length' => 254,
- ]);
- $table->addColumn('source', 'string', [
- 'notnull' => false,
- 'length' => 64,
- ]);
- $table->addColumn('owner_id', 'string', [
- 'notnull' => true,
- 'length' => 64,
- ]);
- $table->addColumn('status', 'smallint', [
- 'notnull' => true,
- 'length' => 1,
- ]);
- $table->addColumn('options', 'string', [
- 'notnull' => false,
- 'length' => 511,
- ]);
- $table->addColumn('err', 'smallint', [
- 'notnull' => true,
- 'length' => 1,
- ]);
- $table->addColumn('message', 'string', [
- 'notnull' => false,
- 'length' => 8000,
- ]);
- $table->addColumn('indexed', 'bigint', [
- 'notnull' => false,
- 'length' => 6,
- ]);
- $table->setPrimaryKey(['provider_id', 'document_id']);
- }
-
if (!$schema->hasTable('fulltextsearch_ticks')) {
$table = $schema->createTable('fulltextsearch_ticks');
$table->addColumn('id', 'bigint', [