Sha256: 16cf8d69bd0c76b592bf8aa715892736972dd4d9cba1bd3f3e500246fd6a7b5c

Contents?: true

Size: 842 Bytes

Versions: 21

Compression:

Stored size: 842 Bytes

Contents

class CreateStockItemStockLocationIdVariantIdCoalesceDeletedAtUniqueIndex < ActiveRecord::Migration[5.2]
  def change
    remove_index :spree_stock_items, name: :stock_item_by_loc_var_id_deleted_at
    reversible do |dir|
      dir.up do
        execute <<-SQL
          CREATE UNIQUE INDEX stock_item_by_loc_var_id_deleted_at
          ON spree_stock_items(
            stock_location_id,
            variant_id,
            (COALESCE(deleted_at, CAST('1970-01-01' AS #{deleted_at_data_type})))
          );
        SQL
      end

      dir.down do
        remove_index :spree_stock_items, name: :stock_item_by_loc_var_id_deleted_at
      end
    end
  end

  private

  def deleted_at_data_type
    case ActiveRecord::Base.connection.adapter_name
    when 'Mysql2'
      'DATETIME'
    when 'PostgreSQL'
      'TIMESTAMP'
    end
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
spree_core-4.7.3 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.6.6 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.5.5 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.4.1 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.5.4 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.6.5 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.7.2 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.7.1 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.6.4 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.7.0 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.6.3 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.6.2 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.6.1 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.6.0 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.5.3 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.5.2 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.5.1 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.5.0 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.4.0 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb
spree_core-4.4.0.rc2 db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb