Merge pull request #6183 from nextcloud/bugfix/6165/make-migration-repeatable

Make migration repeatable
This commit is contained in:
Joas Schilling 2021-09-01 08:37:07 +02:00 коммит произвёл GitHub
Родитель e88492084c 7be5d64cec
Коммит f7aa9f90aa
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 5 удалений

Просмотреть файл

@ -43,11 +43,13 @@ class Version10000Date20201012144235 extends SimpleMigrationStep {
$schema = $schemaClosure();
$table = $schema->getTable('talk_rooms');
$table->addColumn('sip_enabled', Types::SMALLINT, [
'notnull' => true,
'default' => 0,
'unsigned' => true,
]);
if (!$table->hasColumn('sip_enabled')) {
$table->addColumn('sip_enabled', Types::SMALLINT, [
'notnull' => true,
'default' => 0,
'unsigned' => true,
]);
}
return $schema;
}