We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
int(11) is too small, we should use bigint for any file id referencing column:
CREATE TABLE `oc_notes_meta` ( `id` int(11) NOT NULL AUTO_INCREMENT, `file_id` int(11) NOT NULL, `user_id` varchar(64) NOT NULL, `last_update` int(11) NOT NULL, `etag` varchar(32) NOT NULL, `content_etag` varchar(32) NOT NULL, `file_etag` varchar(40) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `notes_meta_file_user_index` (`file_id`,`user_id`), KEY `notes_meta_file_id_index` (`file_id`), KEY `notes_meta_user_id_index` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=5518 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=COMPRESSED;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
int(11) is too small, we should use bigint for any file id referencing column:
The text was updated successfully, but these errors were encountered: