Sha256: 02fe02f50d335e543732fb24e49ba0cb5faa7ea3a53c73e6867ceaf68dbdda53

Contents?: true

Size: 341 Bytes

Versions: 4

Compression:

Stored size: 341 Bytes

Contents

# frozen_string_literal: true

class ValidWithTimestampsInnocentJointable < ActiveRecord::Migration::Current
  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

4 entries across 4 versions & 1 rubygems

Version Path
ibm_db-5.5.0-x86-mingw32 test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb
ibm_db-5.4.1-x86-mingw32 test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb
ibm_db-5.4.0-x86-mingw32 test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb
ibm_db-5.3.2-x86-mingw32 test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb