aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/migrations/rename/1_we_need_things.rb
blob: f5484ac54fc1cfa83f6073b2e199ecba82f71087 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class WeNeedThings < ActiveRecord::Migration
  def self.up
    create_table("things") do |t|
      t.column :content, :text
    end
  end

  def self.down
    drop_table "things"
  end
end