diff --git a/db/migrate/20140421081735_create_tmps.rb b/db/migrate/20140421081735_create_tmps.rb new file mode 100644 index 000000000..713ed5672 --- /dev/null +++ b/db/migrate/20140421081735_create_tmps.rb @@ -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