diff options
author | ubq323 <ubq323> | 2021-06-23 16:25:51 +0000 |
---|---|---|
committer | ubq323 <ubq323> | 2021-06-23 16:25:51 +0000 |
commit | ddc62e940d7c521801b9d00167acc0b0392e951a (patch) | |
tree | 35c921c6b7d531ce020eb557f9b8fc8b6cadbeb7 /apioforum/db.py | |
parent | 47f78d820a3b31929c146a9952136c4ca9f39ce2 (diff) | |
parent | d6b4dcbf7699543335666c43393f6a25b23815e7 (diff) |
on second thoughts it might be easier to have this all on one branch
Diffstat (limited to 'apioforum/db.py')
-rw-r--r-- | apioforum/db.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apioforum/db.py b/apioforum/db.py index 76aacc2..84f268d 100644 --- a/apioforum/db.py +++ b/apioforum/db.py @@ -91,7 +91,7 @@ CREATE TABLE forums ( parent INTEGER REFERENCES forums(id), description TEXT ); -INSERT INTO forums (name,parent,description) values ('root',null,'the default root forum'); +INSERT INTO forums (name,parent,description) values ('apioforum',null,'the default root forum'); PRAGMA foreign_keys = off; BEGIN TRANSACTION; |