Signed-off-by: dartcafe <github@dartcafe.de>
This commit is contained in:
dartcafe 2021-05-23 10:28:03 +02:00
Родитель acf85e6d0d
Коммит 0e7855665b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CCE73CEF3035D3C8
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -24,7 +24,6 @@
namespace OCA\Polls\Migration;
use OCP\DB\Types;
use OCP\IConfig;
use OCP\IDBConnection;
use OCP\Migration\SimpleMigrationStep;
@ -47,7 +46,7 @@ class Version0104Date20200314074611 extends SimpleMigrationStep {
$schema = $schemaClosure();
$table = $schema->getTable('polls_polls');
$table->changeColumn('description', [
'type' => Type::TEXT,
'type' => Types::TEXT,
'notnull' => true,
'default' => ''
]);