Guest User

Untitled

a guest
Oct 21st, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <?php
  2.  
  3. namespace Fuel\Migrations;
  4.  
  5. class Create_following
  6. {
  7. public function up()
  8. {
  9. \DBUtil::create_table('following', array(
  10. 'id' => array('constraint' => 11, 'type' => 'int', 'auto_increment' => true),
  11. 'user_id' => array('constraint' => 20, 'type' => 'varchar'),
  12. 'following_id' => array('constraint' => 20, 'type' => 'varchar'),
  13. 'created_at' => array('constraint' => 11, 'type' => 'int'),
  14. 'updated_at' => array('constraint' => 11, 'type' => 'int'),
  15. ), array('id'));
  16. }
  17.  
  18. public function down()
  19. {
  20. \DBUtil::drop_table('following');
  21. }
  22. }
Add Comment
Please, Sign In to add comment