summaryrefslogtreecommitdiffstats
path: root/core/Migrations
diff options
context:
space:
mode:
Diffstat (limited to 'core/Migrations')
-rw-r--r--core/Migrations/Version14000Date20180712153140.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/core/Migrations/Version14000Date20180712153140.php b/core/Migrations/Version14000Date20180712153140.php
index 04e682a4f68..7f667fa3847 100644
--- a/core/Migrations/Version14000Date20180712153140.php
+++ b/core/Migrations/Version14000Date20180712153140.php
@@ -21,6 +21,7 @@
namespace OC\Core\Migrations;
+use OCP\DB\ISchemaWrapper;
use OCP\Migration\SimpleMigrationStep;
/**
@@ -35,10 +36,7 @@ class Version14000Date20180712153140 extends SimpleMigrationStep {
$schema = $schemaClosure();
$table = $schema->getTable('share');
- $table->addColumn('note', 'text', [
- 'notnull' => true,
- 'default' => ''
- ]);
+ $table->addColumn('note', 'text');
return $schema;
}