HabitatMap/AirCasting

View on GitHub
db/migrate/20111025095521_create_regions.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateRegions < ActiveRecord::Migration[4.2]
  def change
    create_table :regions do |t|
      t.timestamps

      t.float :north
      t.float :south
      t.float :east
      t.float :west
      t.boolean :synchronized, default: true
    end
  end
end