diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-09-01 19:35:57 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-09-01 20:03:42 +0100 |
commit | 53e0f24faade5b543f46e7d89544d92f3709bf7a (patch) | |
tree | a20adc0c8357ed9a6346f8609a0dcfbbd9dd5d5e /src/sql | |
parent | 53a42351b97db6c84fb930b9eb9c89d694956bca (diff) | |
download | webstat-53e0f24faade5b543f46e7d89544d92f3709bf7a.tar.bz2 webstat-53e0f24faade5b543f46e7d89544d92f3709bf7a.tar.xz webstat-53e0f24faade5b543f46e7d89544d92f3709bf7a.zip |
Tag entities with their typewebstat-0.1.1
Diffstat (limited to 'src/sql')
-rw-r--r-- | src/sql/entityInsert.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sql/entityInsert.sql b/src/sql/entityInsert.sql index ac443e3..451e660 100644 --- a/src/sql/entityInsert.sql +++ b/src/sql/entityInsert.sql @@ -1 +1 @@ -INSERT INTO entities(id, value) VALUES(?, ?) ON CONFLICT DO NOTHING +INSERT INTO entities(id, type, value) VALUES(?, ?, ?) ON CONFLICT DO NOTHING |