migrations: reduce size of old UID field
Signed-off-by: Varun Patil <radialapps@gmail.com>pull/803/head
parent
5ba43a134a
commit
5ad9092928
|
@ -47,8 +47,9 @@ class Version000000Date20220812163631 extends SimpleMigrationStep
|
||||||
'notnull' => true,
|
'notnull' => true,
|
||||||
]);
|
]);
|
||||||
$table->addColumn('uid', 'string', [
|
$table->addColumn('uid', 'string', [
|
||||||
|
// dropped in Version200000Date20220924015634
|
||||||
'notnull' => true,
|
'notnull' => true,
|
||||||
'length' => 200,
|
'length' => 64,
|
||||||
]);
|
]);
|
||||||
$table->addColumn('datetaken', Types::DATETIME, [
|
$table->addColumn('datetaken', Types::DATETIME, [
|
||||||
'notnull' => false,
|
'notnull' => false,
|
||||||
|
|
Loading…
Reference in New Issue