Sha256: 7b0f47f50a5b643b2efafba7f92a0fc1af9e70b604905b83315978c9870b901d

Contents?: true

Size: 302 Bytes

Versions: 2

Compression:

Stored size: 302 Bytes

Contents

class ValidWithTimestampsInnocentJointable < 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

2 entries across 2 versions & 1 rubygems

Version Path
ibm_db-3.0.5-x86-mingw32 test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb
ibm_db-3.0.5 test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb