metamaps--metamaps/db/migrate/20121026000731_create_mappings.rb
2013-01-01 17:45:35 -05:00

15 lines
296 B
Ruby

class CreateMappings < ActiveRecord::Migration
def change
create_table :mappings do |t|
t.text :category
t.integer :xloc
t.integer :yloc
t.integer :topic_id
t.integer :synapse_id
t.integer :map_id
t.integer :user_id
t.timestamps
end
end
end