Browse Source

Merge pull request #24832 from nextcloud/enh/24813/trash-autoid-bigint

Make oc_files_trash.auto_id a bigint
tags/v21.0.0beta4
Roeland Jago Douma 3 years ago
parent
commit
7bca3daa8c
No account linked to committer's email address

+ 1
- 2
apps/files_trashbin/lib/Migration/Version1010Date20200630192639.php View File



if (!$schema->hasTable('files_trash')) { if (!$schema->hasTable('files_trash')) {
$table = $schema->createTable('files_trash'); $table = $schema->createTable('files_trash');
$table->addColumn('auto_id', Types::INTEGER, [
$table->addColumn('auto_id', Types::BIGINT, [
'autoincrement' => true, 'autoincrement' => true,
'notnull' => true, 'notnull' => true,
'length' => 4,
]); ]);
$table->addColumn('id', Types::STRING, [ $table->addColumn('id', Types::STRING, [
'notnull' => true, 'notnull' => true,

+ 1
- 0
core/Command/Db/ConvertFilecacheBigInt.php View File

'federated_reshares' => ['share_id'], 'federated_reshares' => ['share_id'],
'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart', 'mtime', 'storage_mtime'], 'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart', 'mtime', 'storage_mtime'],
'filecache_extended' => ['fileid'], 'filecache_extended' => ['fileid'],
'files_trash' => ['auto_id'],
'file_locks' => ['id'], 'file_locks' => ['id'],
'jobs' => ['id'], 'jobs' => ['id'],
'mimetypes' => ['id'], 'mimetypes' => ['id'],

Loading…
Cancel
Save