#22: Added fake migration to prevent migration errors from version 0.0.4

This commit is contained in:
Anton Argirov 2015-07-14 12:09:31 +06:00
parent 09b98719c3
commit 8fdaa465bd

View File

@ -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