Sha256: 0b1df989d11514404045521a3c60abcacd7e942fe0957ed724e4ac3ddda4a0ec
Contents?: true
Size: 424 Bytes
Versions: 53
Compression:
Stored size: 424 Bytes
Contents
class AddNotifiedObject < ActiveRecord::Migration def self.up change_table :notifications do |t| t.references :notified_object, :polymorphic => true t.remove :object_id t.remove :object_type end end def self.down change_table :notifications do |t| t.remove :notified_object_id t.remove :notified_object_type t.references :object, :polymorphic => true end end end
Version data entries
53 entries across 27 versions & 3 rubygems