Sha256: 43724aabd8b71b14de377fdc56d995dca9cba2906bdf54ec9b4b57ca7fceba1d
Contents?: true
Size: 425 Bytes
Versions: 3
Compression:
Stored size: 425 Bytes
Contents
# This migration comes from spree (originally 20180915160001) class AddTimestampsToSpreePrices < ActiveRecord::Migration[5.2] def up add_timestamps :spree_prices, default: Time.current change_column_default :spree_prices, :created_at, nil change_column_default :spree_prices, :updated_at, nil end def down remove_column :spree_prices, :created_at remove_column :spree_prices, :updated_at end end
Version data entries
3 entries across 3 versions & 2 rubygems