astral-api/Astral.DAL/Migrations/2024-12-09.02-emailDomainBlacklist.sql

6 lines
158 B
MySQL
Raw Normal View History

2024-12-11 21:36:30 +01:00
CREATE TABLE emailDomainBlacklist
(
domain TEXT UNIQUE PRIMARY KEY NOT NULL,
createdAt TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL
);