Advertisement
abysalim

Untitled

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