···11+create table feedgens
22+(
33+ at_uri text primary key,
44+ cid text not null,
55+ owner text not null references actors (did),
66+77+ service_did text not null,
88+ content_mode text,
99+ name text not null,
1010+1111+ description text,
1212+ description_facets jsonb,
1313+ avatar_cid text,
1414+ accepts_interactions bool not null default false,
1515+1616+ created_at timestamptz not null default now(),
1717+ indexed_at timestamp not null default now()
1818+);
1919+2020+create index feedgens_owner_index on feedgens using hash (owner);