···692692 check (did <> subject_did)
693693 );
694694695695+ create table if not exists onboarding (
696696+ did text primary key,
697697+ step integer not null default 0,
698698+ status text not null default 'in_progress'
699699+ check (status in ('in_progress','completed','skipped')),
700700+ created text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now')),
701701+ updated text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now'))
702702+ );
695703696704 create table if not exists migrations (
697705 id integer primary key autoincrement,