gosora/schema/pgsql/query_emails.sql
2022-02-21 03:16:15 +00:00

6 lines
176 B
SQL

CREATE TABLE "emails" (
`email` varchar (200) not null,
`uid` int not null,
`validated` boolean DEFAULT 0 not null,
`token` varchar (200) DEFAULT '' not null
);