Files
site/db/migrate/20210429160459_create_wow_geo_positions.rb

15 lines
291 B
Ruby

class CreateWowGeoPositions < ActiveRecord::Migration[6.1]
def change
create_table :wow_geo_positions do |t|
t.float :x
t.float :y
t.float :z
t.float :facing
t.belongs_to :wow_geo_zone
t.belongs_to :wow_geo_map
t.timestamps
end
end
end