Files
drop/prisma/migrations/20241107080421_add_expiry_for_invitations/migration.sql
2024-11-07 19:07:05 +11:00

9 lines
246 B
SQL

/*
Warnings:
- Added the required column `expires` to the `Invitation` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "Invitation" ADD COLUMN "expires" TIMESTAMP(3) NOT NULL;