gosora/schema/mssql/query_login_logs.sql

8 lines
222 B
MySQL
Raw Normal View History

CREATE TABLE [login_logs] (
2022-02-21 03:16:15 +00:00
[lid] int not null IDENTITY,
[uid] int not null,
[success] bool DEFAULT 0 not null,
[ipaddress] nvarchar (200) not null,
[doneAt] datetime not null,
primary key([lid])
);