Sha256: 72ae3e098bd4c52e707286af93126a7e39d803af159ce551873ebf326a529777

Contents?: true

Size: 734 Bytes

Versions: 170

Compression:

Stored size: 734 Bytes

Contents

class RemoveSpheres < ActiveRecord::Migration
  def up
    remove_foreign_key "relations", :name => "relations_on_sphere_id"

    remove_foreign_key "spheres", :name => "spheres_on_actor_id"

    remove_column :relations, :sphere_id

    drop_table :spheres
  end

  def down
    add_column :relations, :sphere_id, :integer

    add_index "relations", "sphere_id"

    create_table "spheres", :force => true do |t|
      t.string   "name"
      t.integer  "actor_id"
      t.datetime "created_at"
      t.datetime "updated_at"
    end

    add_index "spheres", "actor_id"

    add_foreign_key "relations", "spheres", :name => "relations_on_sphere_id"

    add_foreign_key "spheres", "actors", :name => "spheres_on_actor_id"
  end
end

Version data entries

170 entries across 170 versions & 4 rubygems

Version Path
social_stream-0.24.1 base/db/migrate/20110712090343_remove_spheres.rb
social_stream-base-0.18.1 db/migrate/20110712090343_remove_spheres.rb
social_stream-0.24.0 base/db/migrate/20110712090343_remove_spheres.rb
social_stream-base-0.18.0 db/migrate/20110712090343_remove_spheres.rb
social_stream-0.23.4 base/db/migrate/20110712090343_remove_spheres.rb
social_stream-base-0.17.3 db/migrate/20110712090343_remove_spheres.rb
social_stream-0.23.3 base/db/migrate/20110712090343_remove_spheres.rb
social_stream-base-0.17.2 db/migrate/20110712090343_remove_spheres.rb
social_stream-0.23.2 base/db/migrate/20110712090343_remove_spheres.rb
social_stream-base-0.17.1 db/migrate/20110712090343_remove_spheres.rb
social_stream-0.23.1 base/db/migrate/20110712090343_remove_spheres.rb
social_stream-base-0.17.0 db/migrate/20110712090343_remove_spheres.rb
social_stream-0.22.1 base/db/migrate/20110712090343_remove_spheres.rb
social_stream-base-0.16.4 db/migrate/20110712090343_remove_spheres.rb
social_stream-0.22.0 base/db/migrate/20110712090343_remove_spheres.rb
social_stream-base-0.16.3 db/migrate/20110712090343_remove_spheres.rb
social_stream-0.21.4 base/db/migrate/20110712090343_remove_spheres.rb
social_stream-base-0.16.2 db/migrate/20110712090343_remove_spheres.rb
social_stream-0.21.3 base/db/migrate/20110712090343_remove_spheres.rb
social_stream-0.21.2 base/db/migrate/20110712090343_remove_spheres.rb