Files
BelgianBitcoinEmbassy/backend/prisma/migrations/20260405081139_add_post_naddr/migration.sql
T
bbeandCursor 3bdd01dedf feat: user relay management, blog naddr sync, and OG image update
Add UserRelay API and dashboard relays tab with NIP-65 import, store post
naddr for Nostr articles, and ship Prisma migrations for board tables,
user relays, and post metadata.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-23 05:54:34 +02:00

6 lines
275 B
SQL

-- AlterTable: add naddr column to Post
ALTER TABLE "Post" ADD COLUMN "naddr" TEXT;
-- AlterTable: set default for content on Post (new rows only; existing rows keep their content)
-- SQLite doesn't support ALTER COLUMN DEFAULT, but Prisma handles this at the client level.