blob: fe076cbfd45cf102cd0e3a4f6d5da7f19a02bc45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# -*- encoding : utf-8 -*-
class CreateTranslationTables < ActiveRecord::Migration
def self.up
fields = {:name => :text,
:short_name => :text,
:request_email => :text,
:url_name => :text,
:notes => :text,
:first_letter => :string,
:publication_scheme => :text}
PublicBody.create_translation_table!(fields)
# copy current values across to default locale
PublicBody.all.each do |publicbody|
publicbody.translated_attributes.each do |a, default|
value = publicbody.read_attribute(a)
unless value.nil?
publicbody.send(:"#{a}=", value)
end
end
publicbody.save!
end
end
def self.down
PublicBody.drop_translation_table!
end
end
|