X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;ds=sidebyside;f=vendor%2Frails%2Factiverecord%2Ftest%2Fmigrations%2Fvalid%2F3_innocent_jointable.rb;fp=vendor%2Frails%2Factiverecord%2Ftest%2Fmigrations%2Fvalid%2F3_innocent_jointable.rb;h=21c9ca532858e2e786e9789ecd9676f6e3a8ccbd;hb=437aa336c44c74a30aeea16a06743c32747ed661;hp=0000000000000000000000000000000000000000;hpb=97a0772b06264134cfe38e7494f9427efe0840a0;p=feedcatcher.git

diff --git a/vendor/rails/activerecord/test/migrations/valid/3_innocent_jointable.rb b/vendor/rails/activerecord/test/migrations/valid/3_innocent_jointable.rb
new file mode 100644
index 0000000..21c9ca5
--- /dev/null
+++ b/vendor/rails/activerecord/test/migrations/valid/3_innocent_jointable.rb
@@ -0,0 +1,12 @@
+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
\ No newline at end of file