Created
August 5, 2014 10:45
-
-
Save memememomo/3d108b68ac458c90d0a4 to your computer and use it in GitHub Desktop.
DBを直接削除しただけでは、マイグレーションはうまく動かない ref: http://qiita.com/uchiko/items/8ba85d9bba26bb2fa552
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return array( | |
'version' => | |
array( | |
'app' => | |
array( | |
'default' => | |
array( | |
), | |
), | |
'module' => | |
array( | |
), | |
'package' => | |
array( | |
'auth' => | |
array( | |
), | |
), | |
), | |
'folder' => 'migrations/', | |
'table' => 'migration', | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ php oil r migrate:down -v=0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment