Sha256: 53ff07c5fb4a67ac61601e38cb9b11e4e40181f824ceed1d96ec3bdec9cd1078

Contents?: true

Size: 760 Bytes

Versions: 7

Compression:

Stored size: 760 Bytes

Contents

# frozen_string_literal: true

class CreateZctaCounties < ActiveRecord::Migration[5.0]
  def up
    return if table_exists?(:us_geo_zcta_counties)

    create_table :us_geo_zcta_counties do |t|
      t.string :zipcode, limit: 5, null: false
      t.string :county_geoid, limit: 5, null: false, index: true
      t.float :land_area, null: false
      t.float :water_area, null: false
      t.integer :population, null: false
      t.integer :housing_units, null: false
      t.datetime :updated_at, null: false
      t.integer :status, null: false, default: 0, limit: 1
    end

    add_index :us_geo_zcta_counties, [:zipcode, :county_geoid], name: :index_us_geo_zcta_counties_uniq, unique: true
  end

  def down
    drop_table :us_geo_zcta_counties
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
us_geo-2.1.1 db/migrate/20190221054900_create_zcta_counties.rb
us_geo-2.1.0 db/migrate/20190221054900_create_zcta_counties.rb
us_geo-2.0.4 db/migrate/20190221054900_create_zcta_counties.rb
us_geo-2.0.3 db/migrate/20190221054900_create_zcta_counties.rb
us_geo-2.0.2 db/migrate/20190221054900_create_zcta_counties.rb
us_geo-2.0.1 db/migrate/20190221054900_create_zcta_counties.rb
us_geo-2.0.0 db/migrate/20190221054900_create_zcta_counties.rb