15 lines
291 B
Ruby
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
|