Sha256: ad6296f4c86a1d1d21d788b6c50853a9371efeda0abb2c613e11f6da4f6ba0c1
Contents?: true
Size: 280 Bytes
Versions: 24
Compression:
Stored size: 280 Bytes
Contents
class InnocentJointable < 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
24 entries across 8 versions & 1 rubygems