beowulf1416

log_kamikaze_actions

Mar 3rd, 2015
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. create table log_kamikaze_actions (
  2. id bigint auto_increment not null,
  3. actor varchar(200) not null,
  4. action varchar(255) not null,
  5. created_at timestamp not null default current_timestamp,
  6. primary key (id),
  7. index idx_log_kamikaze_actions_1 (created_at)
  8. )
  9. engine myisam
  10. character set utf8;
Advertisement
Add Comment
Please, Sign In to add comment