Guest User

Untitled

a guest
Oct 21st, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2.  
  3. namespace Fuel\Migrations;
  4.  
  5. class Add_foreignkey
  6. {
  7. public function up()
  8. {
  9. \DBUtil::add_foreign_key('status', array(
  10. 'key' => 'user_id',
  11. 'reference' => array(
  12. 'table' => 'user',
  13. 'column' => 'id',
  14. )
  15. ));
  16. }
  17.  
  18. public function down()
  19. {
  20. \DBUtil::foreign_key('status','user_id');
  21. }
  22. }
Add Comment
Please, Sign In to add comment