class WeNeedThings

Public Class Methods

down() click to toggle source
# File activerecord/test/migrations/rename/1_we_need_things.rb, line 10
def self.down
  drop_table "things"
end
up() click to toggle source
# File activerecord/test/migrations/rename/1_we_need_things.rb, line 4
def self.up
  create_table("things") do |t|
    t.column :content, :text
  end
end