Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. $this->table('page_history')
  2. ->addColumn('last_page', 'string', [
  3. 'default' => '',
  4. 'limit' => 100,
  5. 'null' => false,
  6. ])
  7. ->addColumn('visit_on', 'timestamp', [
  8. 'default' => 'CURRENT_TIMESTAMP',
  9. 'update' => 'CURRENT_TIMESTAMP',
  10. 'null' => false,
  11. ])
  12. ->addIndex(['id'])
  13. ->create();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement