Sha256: 25cd4fa94c4e5b4dc701f7fc60a2c01c532cda368d9a2349e8a6a51001fe615a

Contents?: true

Size: 266 Bytes

Versions: 7

Compression:

Stored size: 266 Bytes

Contents

class CreateReactions < ActiveRecord::Migration
  def self.up
    create_table :reactions do |t|
      t.integer :recipient_id
      t.integer :page_id
      t.integer :element_id
      t.timestamps
    end
  end

  def self.down
    drop_table :reactions
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
alchemy_crm-2.0.5 db/migrate/20100927152601_create_reactions.rb
alchemy_crm-2.0.4.1 db/migrate/20100927152601_create_reactions.rb
alchemy_crm-2.1.0a db/migrate/20100927152601_create_reactions.rb
alchemy_crm-2.0.3 db/migrate/20100927152601_create_reactions.rb
alchemy_crm-2.0.2 db/migrate/20100927152601_create_reactions.rb
alchemy_crm-2.0.1 db/migrate/20100927152601_create_reactions.rb
alchemy_crm-2.0.0 db/migrate/20100927152601_create_reactions.rb