Signed-off-by: dartcafe <github@dartcafe.de>
This commit is contained in:
dartcafe 2021-09-14 12:33:32 +02:00
Родитель 02c9062add
Коммит e0bda5bc70
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CCE73CEF3035D3C8
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -207,7 +207,7 @@ abstract class TableSchema {
'allow_proposals' => ['type' => Types::STRING, 'options' => ['notnull' => true, 'default' => 'disallow', 'length' => 64]],
'use_no' => ['type' => Types::INTEGER, 'options' => ['notnull' => true, 'default' => 1]],
'proposals_expire' => ['type' => Types::INTEGER, 'options' => ['notnull' => true, 'default' => 0]],
'misc_settings' => ['type' => Types::TEXT, 'options' => ['notnull' => true, 'default' => '', 'length' => 65535]],
'misc_settings' => ['type' => Types::TEXT, 'options' => ['notnull' => false, 'default' => '', 'length' => 65535]],
],
Option::TABLE => [
'id' => ['type' => Types::INTEGER, 'options' => ['autoincrement' => true, 'notnull' => true]],