github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/schema/mysql/query_emails.sql (about)

     1  CREATE TABLE `emails`(
     2  	`email` varchar(200) not null,
     3  	`uid` int not null,
     4  	`validated` boolean DEFAULT 0 not null,
     5  	`token` varchar(200) DEFAULT '' not null
     6  );