Minor bugfix

Create the raw_text table corretly
This commit is contained in:
Robin Malley 2020-05-19 14:06:10 -04:00
parent 2722b1e282
commit 226580f088
1 changed files with 1 additions and 0 deletions

View File

@ -2,3 +2,4 @@ CREATE TABLE IF NOT EXISTS raw_text (
id INTEGER PRIMARY KEY REFERENCES posts(id) ON DELETE CASCADE,
post_text BLOB,
markup TEXT
);