aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/migrations/10_urban/9_add_expressions.rb
blob: e908c9eabc888ae239e590bfff264a6f78885758 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class AddExpressions < ActiveRecord::Migration::Current
  def self.up
    create_table("expressions") do |t|
      t.column :expression, :string
    end
  end

  def self.down
    drop_table "expressions"
  end
end