summaryrefslogtreecommitdiff
path: root/src/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'src/schema.sql')
-rw-r--r--src/schema.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/schema.sql b/src/schema.sql
index eddea2d..3c6285b 100644
--- a/src/schema.sql
+++ b/src/schema.sql
@@ -6,6 +6,7 @@ CREATE TABLE entities (
id bigint NOT NULL,
value text NOT NULL,
type entity NOT NULL,
+ detail jsonb,
CONSTRAINT pk_entities PRIMARY KEY(id),
CONSTRAINT uni_entities_value UNIQUE(value)