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

     1  CREATE TABLE `password_resets`(
     2  	`email` varchar(200) not null,
     3  	`uid` int not null,
     4  	`validated` varchar(200) not null,
     5  	`token` varchar(200) not null,
     6  	`createdAt` datetime not null
     7  );