soc_site-astro/prisma/migrations/20250324164432_add_unique_token/migration.sql
Jorge Vargas a4b8cf5aab
Some checks failed
/ build (push) Failing after 4m38s
Add unique to token field
2025-03-24 10:44:48 -06:00

8 lines
247 B
SQL

/*
Warnings:
- A unique constraint covering the columns `[token]` on the table `session` will be added. If there are existing duplicate values, this will fail.
*/
-- CreateIndex
CREATE UNIQUE INDEX `session_token_key` ON `session`(`token`);