Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save weslleyanjos/ff5c81c74348851a476ec21f04793560 to your computer and use it in GitHub Desktop.
Save weslleyanjos/ff5c81c74348851a476ec21f04793560 to your computer and use it in GitHub Desktop.

Aggregate Rating duplicado

Ativar e desativar em uma loja específica

store = Store.find(store_id)
store.preferences.structured_data_exp_2 = true
store.save

Ativar e desativar em todas lojas de uma determinada plataforma

Platform.find_by(name: "Loja Integrada").stores.each do |store|
  store.preferences.structured_data_exp_2 = true
  store.save
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment