From 0a2eb35c38c7a2b6dfb0d65017676a07c0fff82c Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Mon, 17 Nov 2025 21:42:00 +0100 Subject: [PATCH] Add `secret` column to `offers` table in migration - Enables the protection of offers with a secret - Answerers must provide the secret to interact with protected offers --- migrations/0004_add_secret.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 migrations/0004_add_secret.sql diff --git a/migrations/0004_add_secret.sql b/migrations/0004_add_secret.sql new file mode 100644 index 0000000..b3463ef --- /dev/null +++ b/migrations/0004_add_secret.sql @@ -0,0 +1,4 @@ +-- Migration: Add secret column to offers table +-- Allows offers to be protected with a secret that answerers must provide + +ALTER TABLE offers ADD COLUMN secret TEXT;