exceptionHandle
yanxd 11 years ago
parent daf7e8d200
commit 6bfcf094d9

@ -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
Loading…
Cancel
Save