Froze rails gems
[depot.git] / vendor / rails / activerecord / test / migrations / missing / 3_we_need_reminders.rb
1 class WeNeedReminders < ActiveRecord::Migration
2 def self.up
3 create_table("reminders") do |t|
4 t.column :content, :text
5 t.column :remind_at, :datetime
6 end
7 end
8
9 def self.down
10 drop_table "reminders"
11 end
12 end