update installation from INSTALL.md

rugk 2017-08-10 22:00:50 +02:00
parent 0dc592d3fd
commit 679cff0bc7

@ -118,32 +118,36 @@ For reference or if you want to create the table schema for yourself (replace
`prefix_` with your own table prefix and create the table schema with phpMyAdmin `prefix_` with your own table prefix and create the table schema with phpMyAdmin
or the MYSQL console): or the MYSQL console):
CREATE TABLE prefix_paste ( ```sql
dataid CHAR(16) NOT NULL, CREATE TABLE prefix_paste (
data BLOB, dataid CHAR(16) NOT NULL,
postdate INT, data BLOB,
expiredate INT, postdate INT,
opendiscussion INT, expiredate INT,
burnafterreading INT, opendiscussion INT,
meta TEXT, burnafterreading INT,
attachment MEDIUMBLOB, meta TEXT,
attachmentname BLOB, attachment MEDIUMBLOB,
PRIMARY KEY (dataid) attachmentname BLOB,
); PRIMARY KEY (dataid)
);
CREATE TABLE prefix_comment (
dataid CHAR(16), CREATE TABLE prefix_comment (
pasteid CHAR(16), dataid CHAR(16),
parentid CHAR(16), pasteid CHAR(16),
data BLOB, parentid CHAR(16),
nickname BLOB, data BLOB,
vizhash BLOB, nickname BLOB,
postdate INT, vizhash BLOB,
PRIMARY KEY (dataid) postdate INT,
); PRIMARY KEY (dataid)
CREATE INDEX parent ON prefix_comment(pasteid); );
CREATE INDEX parent ON prefix_comment(pasteid);
CREATE TABLE prefix_config (
id CHAR(16) NOT NULL, value TEXT, PRIMARY KEY (id) CREATE TABLE prefix_config (
); id CHAR(16) NOT NULL, value TEXT, PRIMARY KEY (id)
INSERT INTO prefix_config VALUES('VERSION', '1.1'); );
INSERT INTO prefix_config VALUES('VERSION', '1.1');
```
In PostgreSQL the attachment column needs to be TEXT and not BLOB or MEDIUMBLOB.