fix declaration of object_uri DB field

Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
This commit is contained in:
Julien Veyssier 2020-09-25 15:35:29 +02:00
Родитель e3d6b532af
Коммит e130afbd65
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4141FEE162030638
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -44,7 +44,7 @@ class Version000013Date20190723185417 extends SimpleMigrationStep {
$table->dropColumn('contact_uid');
$table->addColumn('object_uri', 'string', [
'notnull' => true,
'default' => '',
'default' => '--',
'length' => 64,
]);
$table->addIndex(['object_uri'], 'maps_object_uri');

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

@ -43,7 +43,7 @@ class Version000102Date20190901152326 extends SimpleMigrationStep {
$table = $schema->getTable('maps_address_geo');
$table->changeColumn('object_uri', [
'notnull' => true,
'default' => '',
'default' => '--',
'length' => 255,
]);
}