gosora/schema/mssql/query_emails.sql

6 lines
174 B
MySQL
Raw Normal View History

CREATE TABLE [emails] (
2022-02-21 03:16:15 +00:00
[email] nvarchar (200) not null,
[uid] int not null,
[validated] bit DEFAULT 0 not null,
[token] nvarchar (200) DEFAULT '' not null
);