Correct comment about getPropsFromPath/sha1Base36 in sql files
The function of class File are deprecated, so change comment to FSFile. Change-Id: I2350b2d6d6b09d4d2f6d64ab04891e0911595cb0
This commit is contained in:
parent
6a9d20cebd
commit
e121205cb3
3 changed files with 6 additions and 6 deletions
|
|
@ -26,10 +26,10 @@ CREATE TABLE /*_*/uploadstash (
|
|||
|
||||
us_status varchar(50) not null,
|
||||
|
||||
-- file properties from File::getPropsFromPath. these may prove unnecessary.
|
||||
-- file properties from FSFile::getProps(). these may prove unnecessary.
|
||||
--
|
||||
us_size int unsigned NOT NULL,
|
||||
-- this hash comes from File::sha1Base36(), and is 31 characters
|
||||
-- this hash comes from FSFile::getSha1Base36(), and is 31 characters
|
||||
us_sha1 varchar(31) NOT NULL,
|
||||
us_mime varchar(255),
|
||||
-- Media type as defined by the MEDIATYPE_xxx constants, should duplicate definition in the image table
|
||||
|
|
|
|||
|
|
@ -736,12 +736,12 @@ CREATE TABLE /*_*/uploadstash (
|
|||
-- chunk counter starts at 0, current offset is stored in us_size
|
||||
us_chunk_inx int NULL,
|
||||
|
||||
-- Serialized file properties from File::getPropsFromPath
|
||||
-- Serialized file properties from FSFile::getProps()
|
||||
us_props nvarchar(max),
|
||||
|
||||
-- file size in bytes
|
||||
us_size int NOT NULL,
|
||||
-- this hash comes from File::sha1Base36(), and is 31 characters
|
||||
-- this hash comes from FSFile::getSha1Base36(), and is 31 characters
|
||||
us_sha1 nvarchar(31) NOT NULL,
|
||||
us_mime nvarchar(255),
|
||||
-- Media type as defined by the MEDIATYPE_xxx constants, should duplicate definition in the image table
|
||||
|
|
|
|||
|
|
@ -1001,12 +1001,12 @@ CREATE TABLE /*_*/uploadstash (
|
|||
-- chunk counter starts at 0, current offset is stored in us_size
|
||||
us_chunk_inx int unsigned NULL,
|
||||
|
||||
-- Serialized file properties from File::getPropsFromPath
|
||||
-- Serialized file properties from FSFile::getProps()
|
||||
us_props blob,
|
||||
|
||||
-- file size in bytes
|
||||
us_size int unsigned NOT NULL,
|
||||
-- this hash comes from File::sha1Base36(), and is 31 characters
|
||||
-- this hash comes from FSFile::getSha1Base36(), and is 31 characters
|
||||
us_sha1 varchar(31) NOT NULL,
|
||||
us_mime varchar(255),
|
||||
-- Media type as defined by the MEDIATYPE_xxx constants, should duplicate definition in the image table
|
||||
|
|
|
|||
Loading…
Reference in a new issue