Skip to content

Commit

Permalink
#22: Added fake migration to prevent migration errors from version 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
anteo committed Jul 14, 2015
1 parent 09b9871 commit 8fdaa46
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
class MakeAfterSaveAndBeforeSaveNullable < ActiveRecord::Migration
def up
change_column :custom_workflows, :before_save, :text, :null => true, :default => nil
change_column :custom_workflows, :after_save, :text, :null => true, :default => nil
end
def down
end
end

0 comments on commit 8fdaa46

Please sign in to comment.