You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CREATE TABLE filestore (
|
|
file_id integer PRIMARY KEY,
|
|
user_id integer NOT NULL,
|
|
filename varchar(128) NOT NULL,
|
|
mtime integer NOT NULL,
|
|
data text NOT NULL
|
|
);
|
|
|
|
CREATE UNIQUE INDEX ix_filestore_user_id ON filestore(user_id, filename);
|