gosora/schema/mysql/query_registration_logs.sql

10 lines
303 B
MySQL
Raw Normal View History

CREATE TABLE `registration_logs` (
`rlid` int not null AUTO_INCREMENT,
`username` varchar(100) not null,
`email` varchar(100) not null,
`failureReason` varchar(100) not null,
`success` bool DEFAULT 0 not null,
`ipaddress` varchar(200) not null,
2018-10-07 01:33:03 +00:00
`doneAt` datetime not null,
primary key(`rlid`)
);