You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
313 B
9 lines
313 B
CREATE TABLE uploads (
|
|
upload_id varchar(64) NOT NULL PRIMARY KEY,
|
|
session_id varchar(128) NOT NULL,
|
|
"group" varchar(128) NOT NULL,
|
|
metadata text NOT NULL,
|
|
created datetime NOT NULL default '0000-00-00 00:00:00'
|
|
);
|
|
|
|
CREATE INDEX ix_uploads_session_id ON uploads(session_id, "group", created);
|