Created
October 11, 2017 14:32
-
-
Save dip00dip/27a4d36d3ccfdf3104c1c1d09b8514ec to your computer and use it in GitHub Desktop.
remove dj 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
class DropDelayedJobTable < ActiveRecord::Migration | |
def up | |
drop_table :delayed_jobs | |
end | |
def down | |
raise ActiveRecord::IrreversibleMigration | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment