9 lines
155 B
Ruby
9 lines
155 B
Ruby
|
class PreMigrateIgnores < ActiveRecord::Migration
|
||
|
tag :predeploy
|
||
|
self.transactional = false
|
||
|
|
||
|
def self.up
|
||
|
DataFixup::MigrateIgnores.run
|
||
|
end
|
||
|
end
|