Froze rails gems
[depot.git] / vendor / rails / activerecord / test / migrations / valid / 3_innocent_jointable.rb
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 (file)
index 0000000..21c9ca5
--- /dev/null
@@ -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