blob: f45f7b7829fde77bff3261f412fb4e4af89fd7a8 (
plain)
1
2
3
4
5
6
7
8
|
CREATE TABLE /*_*/translate_stash (
ts_user INTEGER NOT NULL,
ts_namespace INTEGER NOT NULL,
ts_title BLOB NOT NULL,
ts_value BLOB NOT NULL,
ts_metadata BLOB NOT NULL,
PRIMARY KEY(ts_user, ts_namespace, ts_title)
);
|