summaryrefslogtreecommitdiff
path: root/db/migrate/20090207133449_add_page_translation_table.rb
blob: 50c65e1ab8f37c63011fe6533169423482f9aa54 (plain)
1
2
3
4
5
6
7
8
class AddPageTranslationTable < ActiveRecord::Migration
  def self.up
      Page.create_translation_table! :title => :string, :abstract => :text, :body => :text
    end
    def self.down
      Page.drop_translation_table!
    end
end