8 lines
208 B
MySQL
8 lines
208 B
MySQL
|
CREATE TABLE `login_logs` (
|
||
|
`lid` int not null AUTO_INCREMENT,
|
||
|
`uid` int not null,
|
||
|
`success` bool DEFAULT 0 not null,
|
||
|
`ipaddress` varchar(200) not null,
|
||
|
`doneAt` datetime not null,
|
||
|
primary key(`lid`)
|
||
|
);
|