update installation from INSTALL.md
parent
0dc592d3fd
commit
679cff0bc7
@ -118,6 +118,7 @@ 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):
|
||||||
|
|
||||||
|
```sql
|
||||||
CREATE TABLE prefix_paste (
|
CREATE TABLE prefix_paste (
|
||||||
dataid CHAR(16) NOT NULL,
|
dataid CHAR(16) NOT NULL,
|
||||||
data BLOB,
|
data BLOB,
|
||||||
@ -147,3 +148,6 @@ or the MYSQL console):
|
|||||||
id CHAR(16) NOT NULL, value TEXT, PRIMARY KEY (id)
|
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.
|
Loading…
Reference in New Issue
Block a user