16 lines
380 B
MySQL
16 lines
380 B
MySQL
|
-- Level 2.
|
||
|
drop table if exists Logs;
|
||
|
drop table if exists Traces;
|
||
|
drop table if exists UsersData;
|
||
|
drop table if exists IpsData;
|
||
|
drop table if exists FilesData;
|
||
|
|
||
|
-- Level 1.
|
||
|
drop table if exists Methods;
|
||
|
drop table if exists Sessions;
|
||
|
|
||
|
-- Level 0.
|
||
|
drop table if exists Applications;
|
||
|
drop table if exists Users;
|
||
|
drop table if exists Ips;
|
||
|
drop table if exists Files;
|