Add emails

This commit is contained in:
traxys 2023-08-16 22:12:14 +02:00
parent 85c559cfb1
commit f1089232c3
3 changed files with 27 additions and 3 deletions

View file

@ -0,0 +1,5 @@
-- Add migration script here
CREATE TABLE emails (
id uuid REFERENCES accounts(id) NOT NULL,
mail TEXT NOT NULL PRIMARY KEY
);