new column 'material'
[opensuse:software-o-o.git] / db / migrate / 20110317161433_add_material.rb
1 class AddMaterial < ActiveRecord::Migration
2   def self.up
3     add_column :orders, :material, :string
4   end
5
6   def self.down
7     remove_column :orders, :material
8   end
9 end
10