allow insertion of facts that haven't been proven true yet

This commit is contained in:
Chris Cromer 2023-02-03 23:16:03 -03:00
parent 1f2500a037
commit ba7e0b1203
Signed by: cromer
GPG Key ID: FA91071797BEEEC2
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@ const char* obelisk::Fact::createTable()
"left_entity" INTEGER NOT NULL,
"right_entity" INTEGER NOT NULL,
"verb" INTEGER NOT NULL,
"is_true" INTEGER NOT NULL DEFAULT 0,
PRIMARY KEY("id" AUTOINCREMENT),
UNIQUE("left_entity", "right_entity", "verb")
FOREIGN KEY("verb") REFERENCES "verb"("id") ON DELETE RESTRICT,