mail-accounts/migrations/20230816195409_email.sql

6 lines
130 B
MySQL
Raw Normal View History

2023-08-16 22:12:14 +02:00
-- Add migration script here
CREATE TABLE emails (
id uuid REFERENCES accounts(id) NOT NULL,
mail TEXT NOT NULL PRIMARY KEY
);