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>

authored by

oppiliappan and committed by
Tangled
(Jul 16, 2026, 4:33 PM +0300) ceedc661 c897faee

+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,