Sha256: b6caf11256eda7eee0ab0caa87a49363dc50e8e3304ad703b37118ae1435a6b2

Contents?: true

Size: 327 Bytes

Versions: 6

Compression:

Stored size: 327 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

6 entries across 6 versions & 2 rubygems

Version Path
ibm_db-5.5.0 test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb
ibm_db-5.4.1 test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb
ibm_db-5.4.0 test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb
ibm_db-5.3.2 test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb
ibm_db-5.3.1 test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb
ruby-on-quails-0.1.0 activerecord/test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb