Sha256: cdd44f1da703998ad54dc1b0f73b92f3469b7e12357197e6fd2108c0acd53f6c
Contents?: true
Size: 1.11 KB
Versions: 28
Compression:
Stored size: 1.11 KB
Contents
class GeocoderMaxmindGeoliteCity < ActiveRecord::Migration<%= migration_version %> 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, :loc_id add_index :maxmind_geolite_city_blocks, :start_ip_num, unique: true add_index :maxmind_geolite_city_blocks, [:end_ip_num, :start_ip_num], unique: true, name: 'index_maxmind_geolite_city_blocks_on_end_ip_num_range' 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_location drop_table :maxmind_geolite_city_blocks end end
Version data entries
28 entries across 28 versions & 2 rubygems