Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- create table log_kamikaze_actions (
- id bigint auto_increment not null,
- actor varchar(200) not null,
- action varchar(255) not null,
- created_at timestamp not null default current_timestamp,
- primary key (id),
- index idx_log_kamikaze_actions_1 (created_at)
- )
- engine myisam
- character set utf8;
Advertisement
Add Comment
Please, Sign In to add comment