Files
redmine-exception-handler/db/migrate/001_create_maps.rb
Ricky Barrette 2b34516aa8 Added Maps model
refs #16

This model will be used for storing information about each map
2012-04-25 12:39:44 -04:00

14 lines
242 B
Ruby

class CreateMaps < ActiveRecord::Migration
def self.up
create_table :maps do |t|
t.column :package, :string
t.column :build, :string
t.column :map, :string
end
end
def self.down
drop_table :maps
end
end