Make oc_files_trash.auto_id a bigint

Adjusted migration.
Added to occ command to update existing tables.

Signed-off-by: Vincent Petry <vincent@nextcloud.com>
This commit is contained in:
Vincent Petry 2020-12-23 17:50:50 +01:00
parent 5b61120491
commit bdbec28a8f
No known key found for this signature in database
GPG Key ID: E055D6A4D513575C
2 changed files with 2 additions and 2 deletions

View File

@ -45,10 +45,9 @@ class Version1010Date20200630192639 extends SimpleMigrationStep {
if (!$schema->hasTable('files_trash')) {
$table = $schema->createTable('files_trash');
$table->addColumn('auto_id', Types::INTEGER, [
$table->addColumn('auto_id', Types::BIGINT, [
'autoincrement' => true,
'notnull' => true,
'length' => 4,
]);
$table->addColumn('id', Types::STRING, [
'notnull' => true,

View File

@ -69,6 +69,7 @@ class ConvertFilecacheBigInt extends Command {
'federated_reshares' => ['share_id'],
'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart', 'mtime', 'storage_mtime'],
'filecache_extended' => ['fileid'],
'files_trash' => ['auto_id'],
'file_locks' => ['id'],
'jobs' => ['id'],
'mimetypes' => ['id'],