Monorepo for Tangled
0

Configure Feed

Select the types of activity you want to include in your feed.

appview/db: add table for onboarding flow

Signed-off-by: oppiliappan <me@oppi.li>

oppiliappan (Jul 7, 2026, 3:55 PM +0100) 6c053c32 3fc289e5

+8
+8
appview/db/db.go
··· 692 692 check (did <> subject_did) 693 693 ); 694 694 695 + create table if not exists onboarding ( 696 + did text primary key, 697 + step integer not null default 0, 698 + status text not null default 'in_progress' 699 + check (status in ('in_progress','completed','skipped')), 700 + created text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now')), 701 + updated text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now')) 702 + ); 695 703 696 704 create table if not exists migrations ( 697 705 id integer primary key autoincrement,