Sha256: 55b4c9adb6cfd950b2fc70b10cabd7d42207bc65cfed45166ad7749f9d1b9e3c

Contents?: true

Size: 512 Bytes

Versions: 194

Compression:

Stored size: 512 Bytes

Contents

class AggregationsToPolymorphic < ActiveRecord::Migration
  def self.up
    remove_column :aggregations, :user_id
    add_column :aggregations, :ownable_id, :integer
    add_column :aggregations, :ownable_type, :string
    add_index :aggregations, [:ownable_id, :ownable_type]
  end

  def self.down
    add_column :aggregations, :user_id, :integer
    remove_column :aggregations, :ownable_id
    remove_column :aggregations, :ownable_type
    remove_index :aggregations, [:ownable_id, :ownable_type]
  end
end

Version data entries

194 entries across 104 versions & 4 rubygems

Version Path
muck-services-3.3.3 test/db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-services-3.3.3 db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-auth-3.5.4 test/db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-auth-3.5.3 test/db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-auth-3.5.2 test/db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-services-3.3.2 db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-services-3.3.1 db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-services-3.3.0 db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-services-3.2.2 db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-services-3.2.1 db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-services-3.2.0 db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-services-3.1.1 db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-services-3.1.0 db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-raker-3.1.0 db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-services-0.1.47 db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-services-0.1.47 test/rails_root/db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-services-3.0.0 db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-services-3.0.0 test/rails_test/db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-raker-3.0.0 db/migrate/20090915041650_aggregations_to_polymorphic.rb
muck-raker-3.0.0 test/rails_test/db/migrate/20090915041650_aggregations_to_polymorphic.rb