mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-06 20:51:48 +02:00
Fix the enabling of Postgres extension "citext" (#379)
This commit is contained in:
parent
bf424f0718
commit
b471a619d1
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ DELETE FROM "User" u
|
|||
WHERE NOT EXISTS (SELECT * FROM "Poll" p WHERE u.id = p."userId");
|
||||
|
||||
-- Add citext extension
|
||||
CREATE EXTENSION citext;
|
||||
CREATE EXTENSION IF NOT EXISTS citext;
|
||||
|
||||
-- Change email to citext
|
||||
ALTER TABLE "User"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue