7 lines
206 B
SQL
7 lines
206 B
SQL
CREATE TABLE "password_resets" (
|
|
`email` varchar (200) not null,
|
|
`uid` int not null,
|
|
`validated` varchar (200) not null,
|
|
`token` varchar (200) not null,
|
|
`createdAt` timestamp not null
|
|
); |