diff --git a/Installation.md b/Installation.md index e1f0688..9f7d20e 100644 --- a/Installation.md +++ b/Installation.md @@ -75,21 +75,31 @@ any experience running ZeroBin on other RDBMS, please let us know. For reference or if you want to create the table schema for yourself: CREATE TABLE prefix_paste ( - dataid CHAR(16), - data TEXT, + dataid CHAR(16) NOT NULL, + data BLOB, postdate INT, expiredate INT, opendiscussion INT, burnafterreading INT, - meta TEXT + meta TEXT, + attachment MEDIUMBLOB, + attachmentname BLOB, + PRIMARY KEY (dataid) ); CREATE TABLE prefix_comment ( dataid CHAR(16), pasteid CHAR(16), parentid CHAR(16), - data TEXT, - nickname VARCHAR(255), - vizhash TEXT, - postdate INT - ); \ No newline at end of file + data BLOB, + nickname BLOB, + vizhash BLOB, + postdate INT, + PRIMARY KEY (dataid) + ); + CREATE INDEX parent ON prefix_comment(pasteid); + + CREATE TABLE prefix_config ( + id CHAR(16) NOT NULL, value TEXT, PRIMARY KEY (id) + ); + INSERT INTO prefix_config VALUES('VERSION', '0.22'); \ No newline at end of file