Sha256: 3bfe24315ab4a90d939fa80d4dd054deecf8f69345464770d97114586b490f33

Contents?: true

Size: 330 Bytes

Versions: 8

Compression:

Stored size: 330 Bytes

Contents

class RemoveRootPageContentFromStorytimeSites < ActiveRecord::Migration
  def up
    Storytime::Migrators::V1.create_default_blog_for_sites

    remove_column :storytime_sites, :root_page_content
  end

  def down
    Storytime::Blog.destroy_all
    add_column :storytime_sites, :root_page_content, :integer, default: 0
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
storytime-2.1.6 db/migrate/20150219210528_remove_root_page_content_from_storytime_sites.rb
storytime-2.1.5 db/migrate/20150219210528_remove_root_page_content_from_storytime_sites.rb
storytime-2.1.4 db/migrate/20150219210528_remove_root_page_content_from_storytime_sites.rb
storytime-2.1.3 db/migrate/20150219210528_remove_root_page_content_from_storytime_sites.rb
storytime-2.1.2 db/migrate/20150219210528_remove_root_page_content_from_storytime_sites.rb
storytime-2.1.1 db/migrate/20150219210528_remove_root_page_content_from_storytime_sites.rb
storytime-2.1.0 db/migrate/20150219210528_remove_root_page_content_from_storytime_sites.rb
storytime-2.0.0 db/migrate/20150219210528_remove_root_page_content_from_storytime_sites.rb