aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/migrations/duplicate/2_we_need_reminders.rb
blob: d5e71ce8ef6367aa6433a1e0d508b2fe996a548e (plain) (tree)
1
2
3
4
5
6
7
8






                                               
 



                          
class WeNeedReminders < ActiveRecord::Migration
  def self.up
    create_table("reminders") do |t|
      t.column :content, :text
      t.column :remind_at, :datetime
    end
  end

  def self.down
    drop_table "reminders"
  end
end