Sha256: d08c181b03cc54cf5b10db0604cb4cc2677ce8f15e59853c1d8aece377eeca9e
Contents?: true
Size: 469 Bytes
Versions: 7
Compression:
Stored size: 469 Bytes
Contents
class BaseTranslations < ActiveRecord::Migration def self.up StaticPage.create_translation_table! :title => :string, :content => :text Header.create_translation_table! :title => :string, :keywords => :string, :description => :text Structure.create_translation_table! :title => :string, :redirect_url => :string end def self.down StaticPage.drop_translation_table! Header.drop_translation_table! Structure.drop_translation_table! end end
Version data entries
7 entries across 7 versions & 1 rubygems