This commit is contained in:
yanxd 2014-04-21 16:21:39 +08:00
parent daf7e8d200
commit 6bfcf094d9
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
class CreateTmps < ActiveRecord::Migration
def up
create_table :tmp do |t|
t.string :name
t.string :part_number
end
end
def down
drop_table :tmp
end
end