diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/Migrations/Version16000Date20190207141427.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/Migrations/Version16000Date20190207141427.php b/core/Migrations/Version16000Date20190207141427.php index 44e09a8463b..bc1c7e24a8c 100644 --- a/core/Migrations/Version16000Date20190207141427.php +++ b/core/Migrations/Version16000Date20190207141427.php @@ -83,10 +83,12 @@ class Version16000Date20190207141427 extends SimpleMigrationStep { ]); $table->addColumn('collection_id', Type::BIGINT, [ 'notnull' => false, + 'default' => 0, ]); $table->addColumn('resource_id', Type::STRING, [ 'notnull' => false, 'length' => 64, + 'default' => '', ]); $table->addColumn('access', Type::SMALLINT, [ 'notnull' => true, |