summaryrefslogtreecommitdiff
path: root/db/migrate/20130212071000_default_profile_to_template.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20130212071000_default_profile_to_template.rb')
-rw-r--r--db/migrate/20130212071000_default_profile_to_template.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/db/migrate/20130212071000_default_profile_to_template.rb b/db/migrate/20130212071000_default_profile_to_template.rb
new file mode 100644
index 0000000..d3fd89c
--- /dev/null
+++ b/db/migrate/20130212071000_default_profile_to_template.rb
@@ -0,0 +1,13 @@
+class DefaultProfileToTemplate < ActiveRecord::Migration
+ def up
+ GsParameter.where(:entity => 'sofia', :section => 'profile:gemeinschaft').each do |profile|
+ profile.update_attributes(:section => 'profile')
+ end
+ end
+
+ def down
+ GsParameter.where(:entity => 'sofia', :section => 'profile').each do |profile|
+ profile.update_attributes(:section => 'profile:gemeinschaft')
+ end
+ end
+end