feat: implemented handling webhooks

This commit is contained in:
Stevan Freeborn
2026-08-15 20:18:21 -05:00
parent c3fded4492
commit d34c7b5822
6 changed files with 198 additions and 29 deletions
+7
View File
@@ -0,0 +1,7 @@
-- +goose Up
ALTER TABLE users
ADD is_chirpy_red BOOLEAN NOT NULL DEFAULT FALSE;
-- +goose Down
ALTER TABLE users
DROP COLUMN is_chirpy_red;