Monorepo for Tangled
0

Configure Feed

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

spindle: spindle-owned data

Signed-off-by: Seongmin Lee <git@boltless.me>

authored by

Seongmin Lee and committed by
Tangled
(Jul 4, 2026, 8:12 AM +0300) 1c87b332 a0f96f6a

+16
+16
spindle/db/db.go
··· 107 107 updated_at text not null 108 108 ); 109 109 110 + create table if not exists pipelines ( 111 + id text primary key, 112 + repo_did text not null, 113 + commit_id text not null 114 + ); 115 + 116 + create table if not exists workflows ( 117 + id integer primary key autoincrement, 118 + pipeline_id text not null, 119 + name text not null, 120 + status text not null default 'pending', 121 + 122 + unique(pipeline_id, id), 123 + foreign key (pipeline_id) references pipelines(id) on delete cascade 124 + ); 125 + 110 126 create table if not exists migrations ( 111 127 id integer primary key autoincrement, 112 128 name text unique