Sha256: 6b032e717361c36a65fe4aefd32fd80aa9e3d2f6f8560749de493b7b9617ccbb
Contents?: true
Size: 578 Bytes
Versions: 12
Compression:
Stored size: 578 Bytes
Contents
# This migration comes from g5_updatable (originally 20170804184206) class AddDetailsToPointsOfInterest < ActiveRecord::Migration[4.2] def change add_column :g5_updatable_points_of_interest, :phone_number, :string unless column_exists? :g5_updatable_points_of_interest, :phone_number add_column :g5_updatable_points_of_interest, :website, :string unless column_exists? :g5_updatable_points_of_interest, :website add_column :g5_updatable_points_of_interest, :google_map_url, :string unless column_exists? :g5_updatable_points_of_interest, :google_map_url end end
Version data entries
12 entries across 12 versions & 1 rubygems