Skip to content

Commit

Permalink
Migration: Revoke variant overrides without permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
luisramos0 committed Oct 20, 2018
1 parent 9079437 commit d375bb8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
class RevokeVariantOverrideswithoutPermissions < ActiveRecord::Migration
def up
# This process was executed when the permission_revoked_at colum was created (see AddPermissionRevokedAtToVariantOverrides)
# It needs to be repeated due to #2739
variant_override_hubs = Enterprise.where(id: VariantOverride.all.map(&:hub_id).uniq)

variant_override_hubs.each do |hub|
permitting_producer_ids = hub.relationships_as_child
.with_permission(:create_variant_overrides).map(&:parent_id)

variant_overrides_with_revoked_permissions = VariantOverride.for_hubs(hub)
.joins(variant: :product).where("spree_products.supplier_id NOT IN (?)", permitting_producer_ids)

variant_overrides_with_revoked_permissions.update_all(permission_revoked_at: Time.now)
end
end
end
2 changes: 1 addition & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.

ActiveRecord::Schema.define(:version => 20181010093850) do
ActiveRecord::Schema.define(:version => 20181020103501) do

create_table "account_invoices", :force => true do |t|
t.integer "user_id", :null => false
Expand Down

0 comments on commit d375bb8

Please sign in to comment.