-- 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.