Merge pull request #8841 from wy65701436/fix-8839

fix #8839: update bolb size type to bigint
This commit is contained in:
Wang Yan 2019-08-27 12:26:01 +08:00 committed by GitHub
commit c0102c6f85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,9 +16,9 @@ CREATE TABLE blob
/*
digest of config, layer, manifest
*/
digest varchar(255) NOT NULL,
content_type varchar(255) NOT NULL,
size int NOT NULL,
digest varchar(255) NOT NULL,
content_type varchar(1024) NOT NULL,
size bigint NOT NULL,
creation_time timestamp default CURRENT_TIMESTAMP,
UNIQUE (digest)
);