Sha256: 3f16121940376da9c1f4a6a4953fc9b84315e03a980580ce9742bb4a0a9d225e
Contents?: true
Size: 328 Bytes
Versions: 6
Compression:
Stored size: 328 Bytes
Contents
# frozen_string_literal: true class AddZctaPrimaryPlace < ActiveRecord::Migration[5.0] def up return if column_exists?(:us_geo_zctas, :primary_place_geoid) add_column :us_geo_zctas, :primary_place_geoid, :string, limit: 7, null: true end def down remove_column :us_geo_zctas, :primary_place_geoid end end
Version data entries
6 entries across 6 versions & 1 rubygems