From b605ab1b8b2ade12bea13802abb7e96aab6c746b Mon Sep 17 00:00:00 2001 From: Seongmin Lee Date: Wed, 02 Jul 2025 02:30:39 +0000 Subject: [PATCH] appview: db: fix column name typo in sql query Signed-off-by: Seongmin Lee --- appview/db/db.go | 2 +- 1 file(s) changed, 1 insertion(s)(+), 1 deletion(s)(-) diff --git a/appview/db/db.go b/appview/db/db.go --- a/appview/db/db.go +++ b/appview/db/db.go @@ -330,7 +330,7 @@ instance text not null, verified text, -- time of verification created text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now')), - unique(did, instance) + unique(owner, instance) ); create table if not exists spindle_members ( -- tangled.sh