Sha256: 821cd860f5eb3f0e56d29ba19839310a1ab758afa3b9756881a937c710ebf8b5

Contents?: true

Size: 859 Bytes

Versions: 1

Compression:

Stored size: 859 Bytes

Contents

class GeocoderMaxmindGeoliteCity < ActiveRecord::Migration
  def self.up
    create_table :maxmind_geolite_city_blocks, id: false do |t|
      t.column :start_ip_num, :bigint, null: false
      t.column :end_ip_num, :bigint, null: false
      t.column :loc_id, :bigint, null: false
    end
    add_index :maxmind_geolite_city_blocks, :start_ip_num, unique: true

    create_table :maxmind_geolite_city_location, id: false do |t|
      t.column :loc_id, :bigint, null: false
      t.string :country, null: false
      t.string :region, null: false
      t.string :city
      t.string :postal_code, null: false
      t.float :latitude
      t.float :longitude
      t.integer :metro_code
      t.integer :area_code
    end
    add_index :maxmind_geolite_city_location, :loc_id, unique: true
  end

  def self.down
    drop_table :maxmind_geolite_city
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
geocoder-1.2.0 lib/generators/geocoder/maxmind/templates/migration/geolite_city.rb