summaryrefslogtreecommitdiffhomepage
path: root/apioforum/db.py
diff options
context:
space:
mode:
authorubq323 <ubq323>2021-06-23 16:25:51 +0000
committerubq323 <ubq323>2021-06-23 16:25:51 +0000
commitddc62e940d7c521801b9d00167acc0b0392e951a (patch)
tree35c921c6b7d531ce020eb557f9b8fc8b6cadbeb7 /apioforum/db.py
parent47f78d820a3b31929c146a9952136c4ca9f39ce2 (diff)
parentd6b4dcbf7699543335666c43393f6a25b23815e7 (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.py2
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;