aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/migrations_with_duplicate/2_we_need_reminders.rb
blob: ac5918f02a7e45a7cf1206008b4a26fb28d0f00a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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