Sha256: 8ff8b53d68d6178e919b73b515d79baa343e677d6a93890bf86e4d82a032e34b

Contents?: true

Size: 270 Bytes

Versions: 964

Compression:

Stored size: 270 Bytes

Contents

class InnocentJointable < ActiveRecord::Migration
  def self.up
    create_table("people_reminders", :id => false) do |t|
      t.column :reminder_id, :integer
      t.column :person_id, :integer
    end
  end

  def self.down
    drop_table "people_reminders"
  end
end

Version data entries

964 entries across 215 versions & 28 rubygems

Version Path
spree-0.0.9 vendor/rails/activerecord/test/fixtures/migrations_with_duplicate/3_innocent_jointable.rb
spree-0.2.0 vendor/rails/activerecord/test/fixtures/migrations/3_innocent_jointable.rb
spree-0.2.0 vendor/rails/activerecord/test/fixtures/migrations_with_missing_versions/4_innocent_jointable.rb
spree-0.2.0 vendor/rails/activerecord/test/fixtures/migrations_with_duplicate/3_innocent_jointable.rb