aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/migrations/missing/3_we_need_reminders.rb
blob: d7c63ac892fc41d02bc3e1d60ea9e452b3942b98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
class WeNeedReminders < ActiveRecord::Migration::Current
  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