Sha256: 5c4b621ad1d16c89eea3a894e44290b3f8dc2f331c41153114effcedc0d58293

Contents?: true

Size: 729 Bytes

Versions: 25

Compression:

Stored size: 729 Bytes

Contents

class SwitchToLocalizedPageFields < ActiveRecord::Migration[6.1]
  def up
    remove_columns :maglev_pages, :title, :seo_title, :meta_description
    add_column :maglev_pages, :title_translations, :jsonb, default: {}
    add_column :maglev_pages, :seo_title_translations, :jsonb, default: {}
    add_column :maglev_pages, :meta_description_translations, :jsonb, default: {}
  end

  def down
    add_column :maglev_pages, :title, :string
    add_column :maglev_pages, :seo_title, :string
    add_column :maglev_pages, :meta_description, :string
    remove_column :maglev_pages, :title_translations
    remove_column :maglev_pages, :seo_title_translations
    remove_column :maglev_pages, :meta_description_translations
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
maglevcms-1.8.0 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.7.3 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.7.2 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.7.1 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.7.0 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.6.1 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.6.0 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.5.1 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.4.0 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.3.0 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.2.2 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.2.1 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.2.0 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.1.7 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.1.6 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.1.5 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.1.4 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.1.3 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.1.2 db/migrate/20210819092740_switch_to_localized_page_fields.rb
maglevcms-1.1.1 db/migrate/20210819092740_switch_to_localized_page_fields.rb