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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-10-29 22:40:10 +0300
committerJoas Schilling <coding@schilljs.com>2020-10-30 12:38:53 +0300
commit05e7cac904a0b87481a46814825c7e9cc05c6c71 (patch)
tree1541b7d9262f83c368330199a822595264c6fe7e /lib/Migration
parent6cc98c58ab12773bbcc2421488473238d6b68b44 (diff)
Add an empty display_name column as preparation to merge the oc_talk_guests table in
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Migration')
-rw-r--r--lib/Migration/Version10000Date20201015134000.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Migration/Version10000Date20201015134000.php b/lib/Migration/Version10000Date20201015134000.php
index 4ed340a14..b050619ff 100644
--- a/lib/Migration/Version10000Date20201015134000.php
+++ b/lib/Migration/Version10000Date20201015134000.php
@@ -83,6 +83,11 @@ class Version10000Date20201015134000 extends SimpleMigrationStep {
'notnull' => true,
'length' => 255,
]);
+ $table->addColumn('display_name', Type::STRING, [
+ 'notnull' => false,
+ 'default' => '',
+ 'length' => 64,
+ ]);
$table->addColumn('pin', Type::STRING, [
'notnull' => false,