Sha256: 4b765186fb96abebf33bba1495ec56ce570548d938fda6b7bab3bd872988cd72
Contents?: true
Size: 394 Bytes
Versions: 70
Compression:
Stored size: 394 Bytes
Contents
# frozen_string_literal: true class AddApplyToAllToVariantPropertyRule < ActiveRecord::Migration[5.1] def change add_column :spree_variant_property_rules, :apply_to_all, :boolean, default: false, null: false change_column :spree_variant_property_rules, :apply_to_all, :boolean, default: true end def down remove_column :spree_variant_property_rules, :apply_to_all end end
Version data entries
70 entries across 70 versions & 1 rubygems