Sha256: 6fa5da21a1cb9c4d734ec49bcc850f0f2c9bed998f82318552ae06f987d7e28e

Contents?: true

Size: 430 Bytes

Versions: 5

Compression:

Stored size: 430 Bytes

Contents

# This migration comes from tb_cms (originally 20150108162839)
class RemoveSiteIdFromCmsTables < ActiveRecord::Migration[4.2]
  def up
    remove_column :spud_menus, :site_id
    remove_column :spud_pages, :site_id
    remove_column :spud_snippets, :site_id
  end

  def down
    add_column :spud_menus, :site_id, :integer
    add_column :spud_pages, :site_id, :integer
    add_column :spud_snippets, :site_id, :integer
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
tb_cms-1.3.6 spec/dummy/db/migrate/20150108164814_remove_site_id_from_cms_tables.tb_cms.rb
tb_cms-1.3.5 spec/dummy/db/migrate/20150108164814_remove_site_id_from_cms_tables.tb_cms.rb
tb_cms-1.3.3 spec/dummy/db/migrate/20150108164814_remove_site_id_from_cms_tables.tb_cms.rb
tb_cms-1.3.2 spec/dummy/db/migrate/20150108164814_remove_site_id_from_cms_tables.tb_cms.rb
tb_cms-1.3.1 spec/dummy/db/migrate/20150108164814_remove_site_id_from_cms_tables.tb_cms.rb