migrations: reduce size of old UID field

Signed-off-by: Varun Patil <radialapps@gmail.com>
pull/803/head
Varun Patil 2023-08-31 13:30:50 -07:00
parent 5ba43a134a
commit 5ad9092928
1 changed files with 2 additions and 1 deletions

View File

@ -47,8 +47,9 @@ class Version000000Date20220812163631 extends SimpleMigrationStep
'notnull' => true,
]);
$table->addColumn('uid', 'string', [
// dropped in Version200000Date20220924015634
'notnull' => true,
'length' => 200,
'length' => 64,
]);
$table->addColumn('datetaken', Types::DATETIME, [
'notnull' => false,