diff options
author | Joas Schilling <coding@schilljs.com> | 2019-09-23 16:02:13 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2019-09-27 14:29:57 +0200 |
commit | 704c7b6672cc0e0a7fb4ef7ed7b172999049b355 (patch) | |
tree | b2258c9ac4c21132924fd94e8c13efe50cd0f480 /core/Migrations | |
parent | 00859f46f35e15acf02d4948d2d3df9d8d461475 (diff) | |
download | nextcloud-server-704c7b6672cc0e0a7fb4ef7ed7b172999049b355.tar.gz nextcloud-server-704c7b6672cc0e0a7fb4ef7ed7b172999049b355.zip |
Set default value
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/Migrations')
-rw-r--r-- | core/Migrations/Version18000Date20190920085628.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/Migrations/Version18000Date20190920085628.php b/core/Migrations/Version18000Date20190920085628.php index 8464057e4db..e84c698bb7b 100644 --- a/core/Migrations/Version18000Date20190920085628.php +++ b/core/Migrations/Version18000Date20190920085628.php @@ -54,6 +54,7 @@ class Version18000Date20190920085628 extends SimpleMigrationStep { $table->addColumn('displayname', Type::STRING, [ 'notnull' => true, 'length' => 255, + 'default' => '', ]); } |