Sha256: 96c52e121a7e917ab0cfabc40077e1016945afb233ee9eb65ccfe3a18de06401
Contents?: true
Size: 456 Bytes
Versions: 10
Compression:
Stored size: 456 Bytes
Contents
# frozen_string_literal: true # This migration comes from spree (originally 20180416083007) 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
10 entries across 10 versions & 2 rubygems