Add sql highlighting

rugk 2016-09-11 12:09:55 +02:00
parent f22d555069
commit 6de8520bf2

@ -103,6 +103,7 @@ The table prefix option is called `tbl`.
For reference or if you want to create the table schema for yourself (replace For reference or if you want to create the table schema for yourself (replace
`prefix_` with your own table prefix): `prefix_` with your own table prefix):
```sql
CREATE TABLE prefix_paste ( CREATE TABLE prefix_paste (
dataid CHAR(16) NOT NULL, dataid CHAR(16) NOT NULL,
data BLOB, data BLOB,
@ -132,3 +133,4 @@ For reference or if you want to create the table schema for yourself (replace
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', '0.22'); INSERT INTO prefix_config VALUES('VERSION', '0.22');
```