Sha256: b79221af0353f860048a7cde17554aff3e3b13b9cfe2d181e57ac0b540bbfb78
Contents?: true
Size: 456 Bytes
Versions: 9
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
9 entries across 9 versions & 3 rubygems