blob: 950e3af76421a3f1de97499df5bf5f250b3d5559 (
plain)
1
2
3
4
5
6
7
8
|
class RemoveSoundPrefixFromConferenceParameters < ActiveRecord::Migration
def up
GsParameter.where(:entity => 'conferences', :section => 'parameters', :name => 'sound-prefix').destroy_all
end
def down
end
end
|