gosora/schema/mssql/query_emails.sql

6 lines
174 B
SQL

CREATE TABLE [emails] (
[email] nvarchar (200) not null,
[uid] int not null,
[validated] bit DEFAULT 0 not null,
[token] nvarchar (200) DEFAULT '' not null
);