A lexicon-driven AppView for ATProto.
0

Configure Feed

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

happyview / migrations / postgres / 20260304000003_create_script_variables.sql
203 B 6 lines
1CREATE TABLE script_variables ( 2 key TEXT PRIMARY KEY, 3 value TEXT NOT NULL, 4 created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), 5 updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW() 6);