spree_billing_sisow 0.9.0 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +26 -0
- data/README.md +54 -0
- data/app/assets/javascripts/spree/backend/spree_billing_sisow.js +0 -0
- data/app/assets/javascripts/spree/frontend/spree_billing_sisow.js +0 -0
- data/app/assets/stylesheets/spree/backend/spree_billing_sisow.css +0 -0
- data/app/assets/stylesheets/spree/frontend/spree_billing_sisow.css +0 -0
- data/app/controllers/spree/admin/sisow_controller.rb +22 -0
- data/app/controllers/spree/checkout_controller_decorator.rb +70 -0
- data/app/controllers/spree/sisow_status_controller.rb +18 -0
- data/app/models/spree/app_configuration_decorator.rb +7 -0
- data/app/models/spree/billing_integration.rb +38 -0
- data/app/models/spree/payment_method/sisow_billing/bancontact.rb +9 -0
- data/app/models/spree/payment_method/sisow_billing/creditcard.rb +9 -0
- data/app/models/spree/payment_method/sisow_billing/ideal.rb +14 -0
- data/app/models/spree/payment_method/sisow_billing/paypalec.rb +9 -0
- data/app/models/spree/payment_method/sisow_billing/purchase.rb +19 -0
- data/app/models/spree/payment_method/sisow_billing/sisow_payment_method.rb +24 -0
- data/app/models/spree/payment_method/sisow_billing/sofort.rb +9 -0
- data/app/models/spree/payment_method/sisow_billing.rb +123 -0
- data/app/models/spree/sisow_transaction.rb +10 -0
- data/app/overrides/admin_decorator.rb +6 -0
- data/app/views/spree/admin/payments/source_forms/_bancontact.html.erb +8 -0
- data/app/views/spree/admin/payments/source_forms/_ideal.html.erb +8 -0
- data/app/views/spree/admin/payments/source_forms/_paypalec.html.erb +8 -0
- data/app/views/spree/admin/payments/source_forms/_sofort.html.erb +8 -0
- data/app/views/spree/admin/payments/source_views/_bancontact.html.erb +33 -0
- data/app/views/spree/admin/payments/source_views/_ideal.html.erb +33 -0
- data/app/views/spree/admin/payments/source_views/_sofort.html.erb +33 -0
- data/app/views/spree/admin/shared/_configurations_menu_sisow.html.erb +1 -0
- data/app/views/spree/admin/sisow/_form.html.erb +42 -0
- data/app/views/spree/admin/sisow/edit.html.erb +5 -0
- data/app/views/spree/checkout/payment/_bancontact.html.erb +1 -0
- data/app/views/spree/checkout/payment/_creditcard.html.erb +1 -0
- data/app/views/spree/checkout/payment/_ideal.html.erb +6 -0
- data/app/views/spree/checkout/payment/_paypalec.html.erb +1 -0
- data/app/views/spree/checkout/payment/_sofort.html.erb +1 -0
- data/config/locales/en.yml +16 -0
- data/config/locales/nl.yml +16 -0
- data/config/routes.rb +17 -0
- data/db/migrate/20130525124432_create_sisow_transactions.rb +14 -0
- data/db/migrate/20130527131828_add_transaction_type_to_sisow_transactions.rb +7 -0
- data/db/migrate/20150417081217_change_name_of_payment_method_types.rb +24 -0
- data/lib/generators/spree_billing_sisow/install/install_generator.rb +21 -0
- data/lib/spree_billing_sisow/engine.rb +33 -0
- data/lib/spree_billing_sisow/factories.rb +6 -0
- data/lib/spree_billing_sisow.rb +2 -0
- data/spec/controllers/spree/sisow_status_controller_spec.rb +70 -0
- data/spec/dummy/README.md +24 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/config/manifest.js +3 -0
- data/spec/dummy/app/assets/javascripts/cable.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
- data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
- data/spec/dummy/app/controllers/application_controller.rb +2 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/jobs/application_job.rb +2 -0
- data/spec/dummy/app/mailers/application_mailer.rb +4 -0
- data/spec/dummy/app/models/application_record.rb +3 -0
- data/spec/dummy/app/models/spree/dummy_model.rb +6 -0
- data/spec/dummy/app/views/layouts/application.html.erb +15 -0
- data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +33 -0
- data/spec/dummy/bin/update +28 -0
- data/spec/dummy/config/application.rb +54 -0
- data/spec/dummy/config/boot.rb +6 -0
- data/spec/dummy/config/cable.yml +10 -0
- data/spec/dummy/config/credentials.yml.enc +1 -0
- data/spec/dummy/config/database.yml +16 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +61 -0
- data/spec/dummy/config/environments/production.rb +94 -0
- data/spec/dummy/config/environments/test.rb +38 -0
- data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
- data/spec/dummy/config/initializers/assets.rb +12 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/spec/dummy/config/initializers/devise.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/spree.rb +30 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +33 -0
- data/spec/dummy/config/master.key +1 -0
- data/spec/dummy/config/puma.rb +34 -0
- data/spec/dummy/config/routes.rb +11 -0
- data/spec/dummy/config/storage.yml +34 -0
- data/spec/dummy/config.ru +5 -0
- data/spec/dummy/db/migrate/20190729091650_create_active_storage_tables.active_storage.rb +27 -0
- data/spec/dummy/db/migrate/20190729091651_spree_one_two.spree.rb +482 -0
- data/spec/dummy/db/migrate/20190729091652_spree_promo_one_two.spree.rb +46 -0
- data/spec/dummy/db/migrate/20190729091653_add_tax_rate_label.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091654_add_toggle_tax_rate_display.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091655_remove_unused_preference_columns.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091656_add_lock_version_to_variant.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091657_add_states_required_to_countries.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091658_add_on_demand_to_product_and_variant.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091659_remove_not_null_constraint_from_products_on_hand.spree.rb +12 -0
- data/spec/dummy/db/migrate/20190729091660_split_prices_from_variants.spree.rb +32 -0
- data/spec/dummy/db/migrate/20190729091661_remove_not_null_from_spree_prices_amount.spree.rb +10 -0
- data/spec/dummy/db/migrate/20190729091662_add_currency_to_line_items.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091663_add_currency_to_orders.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091664_add_cost_currency_to_variants.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091665_remove_display_on_from_payment_methods.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091666_add_position_to_taxonomies.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091667_add_last_ip_to_spree_orders.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091668_add_state_to_spree_adjustments.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091669_add_display_on_to_spree_payment_methods.spree.rb +10 -0
- data/spec/dummy/db/migrate/20190729091670_add_position_to_product_properties.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091671_add_identifier_to_spree_payments.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091672_add_order_id_index_to_payments.spree.rb +10 -0
- data/spec/dummy/db/migrate/20190729091673_add_primary_to_spree_products_taxons.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091674_create_spree_stock_items.spree.rb +15 -0
- data/spec/dummy/db/migrate/20190729091675_create_spree_stock_locations.spree.rb +12 -0
- data/spec/dummy/db/migrate/20190729091676_create_default_stock.spree.rb +34 -0
- data/spec/dummy/db/migrate/20190729091677_add_order_id_index_to_shipments.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091678_change_meta_description_on_spree_products_to_text.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091679_add_stock_location_id_to_spree_shipments.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091680_add_pending_to_inventory_unit.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091681_remove_on_demand_from_product_and_variant.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091682_create_shipping_method_zone.spree.rb +22 -0
- data/spec/dummy/db/migrate/20190729091683_remove_shipping_category_id_from_shipping_method.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091684_create_shipping_method_categories.spree.rb +14 -0
- data/spec/dummy/db/migrate/20190729091685_add_tracking_url_to_spree_shipping_methods.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091686_create_spree_shipping_rates.spree.rb +25 -0
- data/spec/dummy/db/migrate/20190729091687_remove_category_match_attributes_from_shipping_method.spree.rb +8 -0
- data/spec/dummy/db/migrate/20190729091688_create_stock_movements.spree.rb +13 -0
- data/spec/dummy/db/migrate/20190729091689_add_address_fields_to_stock_location.spree.rb +23 -0
- data/spec/dummy/db/migrate/20190729091690_add_active_field_to_stock_locations.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091691_add_backorderable_to_stock_item.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091692_add_default_quantity_to_stock_movement.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091693_add_source_and_destination_to_stock_movements.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091694_change_orders_total_precision.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091695_change_spree_payments_amount_precision.spree.rb +8 -0
- data/spec/dummy/db/migrate/20190729091696_change_spree_return_authorization_amount_precision.spree.rb +8 -0
- data/spec/dummy/db/migrate/20190729091697_change_adjustments_amount_precision.spree.rb +8 -0
- data/spec/dummy/db/migrate/20190729091698_add_originator_to_stock_movement.spree.rb +8 -0
- data/spec/dummy/db/migrate/20190729091699_drop_source_and_destination_from_stock_movement.spree.rb +16 -0
- data/spec/dummy/db/migrate/20190729091700_migrate_inventory_unit_sold_to_on_hand.spree.rb +10 -0
- data/spec/dummy/db/migrate/20190729091701_add_stock_location_to_rma.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091702_update_shipment_state_for_canceled_orders.spree.rb +16 -0
- data/spec/dummy/db/migrate/20190729091703_add_seo_metas_to_taxons.spree.rb +10 -0
- data/spec/dummy/db/migrate/20190729091704_remove_stock_item_and_variant_lock.spree.rb +15 -0
- data/spec/dummy/db/migrate/20190729091705_add_name_to_spree_credit_cards.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091706_update_name_fields_on_spree_credit_cards.spree.rb +14 -0
- data/spec/dummy/db/migrate/20190729091707_add_index_to_source_columns_on_adjustments.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091708_update_adjustment_states.spree.rb +17 -0
- data/spec/dummy/db/migrate/20190729091709_add_shipping_rates_to_shipments.spree.rb +16 -0
- data/spec/dummy/db/migrate/20190729091710_create_spree_stock_transfers.spree.rb +15 -0
- data/spec/dummy/db/migrate/20190729091711_drop_products_count_on_hand.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091712_set_default_shipping_rate_cost.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091713_add_number_to_stock_transfer.spree.rb +24 -0
- data/spec/dummy/db/migrate/20190729091714_add_sku_index_to_spree_variants.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091715_add_backorderable_default_to_spree_stock_location.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091716_add_propage_all_variants_to_spree_stock_location.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091717_rename_shipping_methods_zones_to_spree_shipping_methods_zones.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091718_add_user_id_index_to_spree_orders.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091719_add_updated_at_to_spree_countries.spree.rb +10 -0
- data/spec/dummy/db/migrate/20190729091720_add_updated_at_to_spree_states.spree.rb +10 -0
- data/spec/dummy/db/migrate/20190729091721_add_cvv_result_code_and_cvv_result_message_to_spree_payments.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091722_add_unique_index_to_permalink_on_spree_products.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091723_add_unique_index_to_orders_shipments_and_stock_transfers.spree.rb +8 -0
- data/spec/dummy/db/migrate/20190729091724_add_deleted_at_to_spree_tax_rates.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091725_remove_lock_version_from_inventory_units.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091726_add_cost_price_to_line_item.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091727_set_backorderable_to_default_to_false.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091728_add_created_by_id_to_spree_orders.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091729_index_completed_at_on_spree_orders.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091730_add_tax_category_id_to_spree_line_items.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091731_migrate_tax_categories_to_line_items.spree.rb +11 -0
- data/spec/dummy/db/migrate/20190729091732_drop_spree_mail_methods.spree.rb +13 -0
- data/spec/dummy/db/migrate/20190729091733_set_default_stock_location_on_shipments.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091734_upgrade_adjustments.spree.rb +47 -0
- data/spec/dummy/db/migrate/20190729091735_rename_adjustment_fields.spree.rb +21 -0
- data/spec/dummy/db/migrate/20190729091736_add_admin_name_column_to_spree_shipping_methods.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091737_add_admin_name_column_to_spree_stock_locations.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091738_add_shipment_total_to_spree_orders.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091739_expand_order_number_size.spree.rb +10 -0
- data/spec/dummy/db/migrate/20190729091740_rename_activators_to_promotions.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091741_add_adjustment_total_to_line_items.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091742_add_adjustment_total_to_shipments.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091743_add_depth_to_spree_taxons.spree.rb +17 -0
- data/spec/dummy/db/migrate/20190729091744_add_tax_total_to_line_items_shipments_and_orders.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091745_add_shipping_category_to_shipping_methods_and_products.spree.rb +16 -0
- data/spec/dummy/db/migrate/20190729091746_migrate_old_shipping_calculators.spree.rb +20 -0
- data/spec/dummy/db/migrate/20190729091747_add_code_to_spree_promotion_rules.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091748_change_states_required_for_countries.spree.rb +10 -0
- data/spec/dummy/db/migrate/20190729091749_add_deleted_at_to_spree_stock_items.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091750_remove_promotions_event_name_field.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091751_add_promo_total_to_line_items_and_shipments_and_orders.spree.rb +8 -0
- data/spec/dummy/db/migrate/20190729091752_remove_unused_credit_card_fields.spree.rb +17 -0
- data/spec/dummy/db/migrate/20190729091753_add_track_inventory_to_variant.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091754_add_tax_category_to_variants.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091755_add_channel_to_spree_orders.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091756_add_included_to_adjustments.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091757_rename_tax_total_fields.spree.rb +12 -0
- data/spec/dummy/db/migrate/20190729091758_add_line_item_id_to_spree_inventory_units.spree.rb +22 -0
- data/spec/dummy/db/migrate/20190729091759_add_updated_at_to_variants.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091760_add_position_to_classifications.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091761_create_spree_orders_promotions.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091762_unique_shipping_method_categories.spree.rb +25 -0
- data/spec/dummy/db/migrate/20190729091763_add_item_count_to_spree_orders.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091764_remove_value_type_from_spree_preferences.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091765_rename_permalink_to_slug_for_products.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091766_add_index_to_variant_id_and_currency_on_prices.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091767_rename_activator_id_in_rules_and_actions_to_promotion_id.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091768_add_deleted_at_to_spree_prices.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091769_add_approver_id_and_approved_at_to_orders.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091770_add_confirmation_delivered_to_spree_orders.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091771_add_auto_capture_to_payment_methods.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091772_create_spree_payment_capture_events.spree.rb +13 -0
- data/spec/dummy/db/migrate/20190729091773_add_uncaptured_amount_to_payments.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091774_default_variant_weight_to_zero.spree.rb +12 -0
- data/spec/dummy/db/migrate/20190729091775_add_tax_category_id_to_shipping_methods.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091776_add_tax_rate_id_to_shipping_rates.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091777_add_pre_tax_amount_to_line_items_and_shipments.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091778_add_more_indexes.spree.rb +14 -0
- data/spec/dummy/db/migrate/20190729091779_add_considered_risky_to_orders.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091780_add_preference_store_to_everything.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091781_add_user_id_to_spree_credit_cards.spree.rb +14 -0
- data/spec/dummy/db/migrate/20190729091782_migrate_old_preferences.spree.rb +28 -0
- data/spec/dummy/db/migrate/20190729091783_create_spree_stores.spree.rb +26 -0
- data/spec/dummy/db/migrate/20190729091784_create_store_from_preferences.spree.rb +38 -0
- data/spec/dummy/db/migrate/20190729091785_add_timestamps_to_spree_assets.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091786_create_spree_taxons_promotion_rules.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091787_add_additional_store_fields.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091788_add_many_missing_indexes.spree.rb +19 -0
- data/spec/dummy/db/migrate/20190729091789_correct_some_polymorphic_index_and_add_more_missing.spree.rb +67 -0
- data/spec/dummy/db/migrate/20190729091790_add_user_id_created_by_id_index_to_order.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091791_change_spree_price_amount_precision.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091792_add_token_to_spree_orders.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091793_move_order_token_from_tokenized_permission.spree.rb +30 -0
- data/spec/dummy/db/migrate/20190729091794_set_shipment_total_for_users_upgrading.spree.rb +11 -0
- data/spec/dummy/db/migrate/20190729091795_drop_credit_card_first_name_and_last_name.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091796_add_deleted_at_to_spree_promotion_actions.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091797_remove_uncaptured_amount_from_spree_payments.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091798_create_spree_refunds.spree.rb +13 -0
- data/spec/dummy/db/migrate/20190729091799_create_spree_return_authorization_inventory_unit.spree.rb +13 -0
- data/spec/dummy/db/migrate/20190729091800_rename_return_authorization_inventory_unit_to_return_items.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091801_backfill_line_item_pre_tax_amount.spree.rb +11 -0
- data/spec/dummy/db/migrate/20190729091802_recreate_spree_return_authorizations.spree.rb +56 -0
- data/spec/dummy/db/migrate/20190729091803_add_amount_fields_to_return_items.spree.rb +8 -0
- data/spec/dummy/db/migrate/20190729091804_drop_return_authorization_amount.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091805_create_spree_return_authorization_reasons.spree.rb +29 -0
- data/spec/dummy/db/migrate/20190729091806_create_spree_refund_reasons.spree.rb +15 -0
- data/spec/dummy/db/migrate/20190729091807_rename_return_authorization_reason.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091808_create_spree_promotion_categories.spree.rb +12 -0
- data/spec/dummy/db/migrate/20190729091809_drop_received_at_on_return_items.spree.rb +10 -0
- data/spec/dummy/db/migrate/20190729091810_add_reception_and_acceptance_status_to_return_items.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091811_create_default_refund_reason.spree.rb +10 -0
- data/spec/dummy/db/migrate/20190729091812_add_default_to_spree_stock_locations.spree.rb +8 -0
- data/spec/dummy/db/migrate/20190729091813_create_spree_customer_returns.spree.rb +10 -0
- data/spec/dummy/db/migrate/20190729091814_add_customer_return_id_to_return_item.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091815_create_friendly_id_slugs.spree.rb +16 -0
- data/spec/dummy/db/migrate/20190729091816_rename_spree_refund_return_authorization_id.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091817_increase_return_item_pre_tax_amount_precision.spree.rb +14 -0
- data/spec/dummy/db/migrate/20190729091818_copy_product_slugs_to_slug_history.spree.rb +16 -0
- data/spec/dummy/db/migrate/20190729091819_create_spree_reimbursements.spree.rb +22 -0
- data/spec/dummy/db/migrate/20190729091820_add_promotionable_to_spree_products.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091821_add_exchange_inventory_unit_foreign_keys.spree.rb +8 -0
- data/spec/dummy/db/migrate/20190729091822_add_acceptance_status_errors_to_return_item.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091823_create_spree_reimbursement_types.spree.rb +21 -0
- data/spec/dummy/db/migrate/20190729091824_add_default_to_shipment_cost.spree.rb +11 -0
- data/spec/dummy/db/migrate/20190729091825_add_default_to_spree_credit_cards.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091826_make_existing_credit_cards_default.spree.rb +11 -0
- data/spec/dummy/db/migrate/20190729091827_add_type_to_reimbursement_type.spree.rb +10 -0
- data/spec/dummy/db/migrate/20190729091828_create_spree_reimbursement_credits.spree.rb +11 -0
- data/spec/dummy/db/migrate/20190729091829_add_meta_title_to_spree_products.spree.rb +8 -0
- data/spec/dummy/db/migrate/20190729091830_add_kind_to_zone.spree.rb +12 -0
- data/spec/dummy/db/migrate/20190729091831_add_code_to_spree_tax_categories.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091832_default_pre_tax_amount_should_be_zero.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091833_add_code_to_spree_shipping_methods.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091834_add_cancel_audit_fields_to_spree_orders.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091835_add_store_id_to_orders.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091836_create_spree_taxons_prototypes.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091837_add_state_lock_version_to_order.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091838_add_counter_cache_from_spree_variants_to_spree_stock_items.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091839_fix_adjustment_order_presence.spree.rb +14 -0
- data/spec/dummy/db/migrate/20190729091840_update_classifications_positions.spree.rb +10 -0
- data/spec/dummy/db/migrate/20190729091841_add_guest_token_index_to_spree_orders.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091842_remove_token_permissions_table.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091843_remove_extra_products_slug_index.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091844_update_product_slug_index.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091845_rename_identifier_to_number_for_payment.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091846_create_spree_store_credits.spree.rb +25 -0
- data/spec/dummy/db/migrate/20190729091847_create_spree_store_credit_categories.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091848_create_spree_store_credit_events.spree.rb +18 -0
- data/spec/dummy/db/migrate/20190729091849_create_spree_store_credit_types.spree.rb +11 -0
- data/spec/dummy/db/migrate/20190729091850_remove_environment_from_payment_method.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091851_add_resellable_to_return_items.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091852_add_code_to_spree_promotion_categories.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091853_remove_environment_from_tracker.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091854_remove_spree_configurations.spree.rb +17 -0
- data/spec/dummy/db/migrate/20190729091855_add_index_to_spree_stock_items_variant_id.spree.rb +14 -0
- data/spec/dummy/db/migrate/20190729091856_ensure_payments_have_numbers.spree.rb +14 -0
- data/spec/dummy/db/migrate/20190729091857_add_missing_indexes_on_spree_tables.spree.rb +68 -0
- data/spec/dummy/db/migrate/20190729091858_remove_duplicated_indexes_from_multi_columns.spree.rb +19 -0
- data/spec/dummy/db/migrate/20190729091859_remove_user_index_from_spree_state_changes.spree.rb +15 -0
- data/spec/dummy/db/migrate/20190729091860_fix_adjustment_order_id.spree.rb +71 -0
- data/spec/dummy/db/migrate/20190729091861_add_position_to_spree_payment_methods.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091862_add_deleted_at_to_friendly_id_slugs.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091863_increase_scale_on_pre_tax_amounts.spree.rb +17 -0
- data/spec/dummy/db/migrate/20190729091864_add_taxable_adjustment_total_to_line_item.spree.rb +20 -0
- data/spec/dummy/db/migrate/20190729091865_migrate_payment_methods_display.spree.rb +13 -0
- data/spec/dummy/db/migrate/20190729091866_enable_acts_as_paranoid_on_calculators.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091867_spree_payment_method_store_credits.spree.rb +13 -0
- data/spec/dummy/db/migrate/20190729091868_rename_has_and_belongs_to_associations_to_model_names.spree.rb +19 -0
- data/spec/dummy/db/migrate/20190729091869_spree_store_credit_types.spree.rb +12 -0
- data/spec/dummy/db/migrate/20190729091870_add_discontinued_to_products_and_variants.spree.rb +69 -0
- data/spec/dummy/db/migrate/20190729091871_remove_shipping_method_id_from_spree_orders.spree.rb +14 -0
- data/spec/dummy/db/migrate/20190729091872_add_id_column_to_earlier_habtm_tables.spree.rb +17 -0
- data/spec/dummy/db/migrate/20190729091873_add_indexes.spree.rb +15 -0
- data/spec/dummy/db/migrate/20190729091874_remove_counter_cache_from_spree_variants_to_spree_stock_items.spree.rb +11 -0
- data/spec/dummy/db/migrate/20190729091875_acts_as_taggable_on_spree_migration.spree.rb +41 -0
- data/spec/dummy/db/migrate/20190729091876_change_collation_for_spree_tag_names.spree.rb +10 -0
- data/spec/dummy/db/migrate/20190729091877_add_missing_indexes_to_spree_taggings.spree.rb +15 -0
- data/spec/dummy/db/migrate/20190729091878_add_zipcode_required_to_spree_countries.spree.rb +8 -0
- data/spec/dummy/db/migrate/20190729091879_add_created_at_to_variant.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091880_add_null_false_to_spree_variants_timestamps.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091881_add_quantity_to_inventory_units.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091882_add_original_return_item_id_to_spree_inventory_units.spree.rb +30 -0
- data/spec/dummy/db/migrate/20190729091883_add_unique_index_on_number_to_spree_orders.spree.rb +17 -0
- data/spec/dummy/db/migrate/20190729091884_add_unique_index_on_number_to_spree_stock_transfer.spree.rb +17 -0
- data/spec/dummy/db/migrate/20190729091885_add_unique_index_on_number_to_spree_shipment.spree.rb +17 -0
- data/spec/dummy/db/migrate/20190729091886_add_unique_index_on_number_to_spree_payments.spree.rb +18 -0
- data/spec/dummy/db/migrate/20190729091887_add_unique_index_on_number_to_spree_return_authorizations.spree.rb +17 -0
- data/spec/dummy/db/migrate/20190729091888_add_unique_index_on_number_to_spree_customer_returns.spree.rb +17 -0
- data/spec/dummy/db/migrate/20190729091889_add_unique_index_on_number_to_spree_reimbursements.spree.rb +17 -0
- data/spec/dummy/db/migrate/20190729091890_add_missing_unique_indexes_for_unique_attributes.spree.rb +38 -0
- data/spec/dummy/db/migrate/20190729091891_add_index_on_stock_location_to_spree_customer_returns.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091892_add_index_on_prototype_to_spree_option_type_prototype.spree.rb +20 -0
- data/spec/dummy/db/migrate/20190729091893_add_indexes_to_spree_option_value_variant.spree.rb +20 -0
- data/spec/dummy/db/migrate/20190729091894_add_index_on_promotion_id_to_order_promotions.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091895_add_indexes_for_property_prototype.spree.rb +21 -0
- data/spec/dummy/db/migrate/20190729091896_add_index_for_prototype_id_to_prototype_taxons.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091897_add_indexes_to_refunds.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091898_add_indexes_to_reimbursement_credits.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091899_add_indexes_to_return_authorizations.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091900_add_indexes_to_return_items.spree.rb +12 -0
- data/spec/dummy/db/migrate/20190729091901_add_index_to_role_users.spree.rb +19 -0
- data/spec/dummy/db/migrate/20190729091902_add_index_to_shipping_method_categories.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091903_add_index_to_shipping_method_zones.spree.rb +21 -0
- data/spec/dummy/db/migrate/20190729091904_add_index_to_spree_shipping_rates.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091905_add_index_to_spree_stock_items.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091906_add_index_to_spree_stock_movement.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091907_change_indexes_on_friendly_id_slugs.spree.rb +11 -0
- data/spec/dummy/db/migrate/20190729091908_add_analytics_kind_to_spree_trackers.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091909_rename_tracker_kind_field.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091910_remove_icon_from_taxons.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190729091911_add_unique_index_on_spree_promotions_code.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091912_rename_guest_token_to_token_in_orders.spree.rb +6 -0
- data/spec/dummy/db/migrate/20190729091913_add_timestamps_to_spree_prices.spree.rb +13 -0
- data/spec/dummy/db/migrate/20190729091914_add_deleted_at_to_spree_credit_cards.spree.rb +7 -0
- data/spec/dummy/db/migrate/20190729091915_create_users.spree_auth.rb +30 -0
- data/spec/dummy/db/migrate/20190729091916_rename_columns_for_devise.spree_auth.rb +38 -0
- data/spec/dummy/db/migrate/20190729091917_convert_user_remember_field.spree_auth.rb +12 -0
- data/spec/dummy/db/migrate/20190729091918_add_reset_password_sent_at_to_spree_users.spree_auth.rb +9 -0
- data/spec/dummy/db/migrate/20190729091919_make_users_email_index_unique.spree_auth.rb +10 -0
- data/spec/dummy/db/migrate/20190729091920_add_deleted_at_to_users.spree_auth.rb +7 -0
- data/spec/dummy/db/migrate/20190729091921_add_confirmable_to_users.spree_auth.rb +8 -0
- data/spec/dummy/db/migrate/20190729091922_add_missing_indices_on_user.spree_auth.rb +11 -0
- data/spec/dummy/db/migrate/20190729091923_create_sisow_transactions.spree_billing_sisow.rb +15 -0
- data/spec/dummy/db/migrate/20190729091924_add_transaction_type_to_sisow_transactions.spree_billing_sisow.rb +8 -0
- data/spec/dummy/db/migrate/20190729091925_change_name_of_payment_method_types.spree_billing_sisow.rb +25 -0
- data/spec/dummy/db/migrate/20190729091926_add_api_key_to_spree_users.spree_api.rb +8 -0
- data/spec/dummy/db/migrate/20190729091927_resize_api_key_field.spree_api.rb +8 -0
- data/spec/dummy/db/migrate/20190729091928_rename_api_key_to_spree_api_key.spree_api.rb +8 -0
- data/spec/dummy/db/migrate/20190729091929_add_index_to_user_spree_api_key.spree_api.rb +8 -0
- data/spec/dummy/db/migrate/20190729091930_create_doorkeeper_tables.spree_api.rb +70 -0
- data/spec/dummy/db/migrate/20190729091931_create_spree_dummy_models.rb +10 -0
- data/spec/dummy/db/schema.rb +1141 -0
- data/spec/dummy/db/seeds.rb +10 -0
- data/spec/dummy/db/spree_test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +60773 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/dummy/public/apple-touch-icon.png +0 -0
- data/spec/dummy/public/assets/admin/logo-80200db37ace2294842fdb8cadf550b3681426b5551d89ad8fc4c0a53249d729.png +0 -0
- data/spec/dummy/public/assets/application-f0d704deea029cf000697e2c0181ec173a1b474645466ed843eb5ee7bb215794.css +16 -0
- data/spec/dummy/public/assets/application-f0d704deea029cf000697e2c0181ec173a1b474645466ed843eb5ee7bb215794.css.gz +0 -0
- data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot +0 -0
- data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot.gz +0 -0
- data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg +288 -0
- data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg.gz +0 -0
- data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-a26394f7ede100ca118eff2eda08596275a9839b959c226e15439557a5a80742.woff +0 -0
- data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf +0 -0
- data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf.gz +0 -0
- data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2 +0 -0
- data/spec/dummy/public/assets/credit_cards/amex_cid-110b3c8694faccb08f6c0e150833efd218b6fe420fdca7175e3551c8bd4b925e.gif +0 -0
- data/spec/dummy/public/assets/credit_cards/credit_card-5ca047adf17e2e7fdd101d108b2ac90178b4ccb32d02628ce723bb14ccb9bcea.gif +0 -0
- data/spec/dummy/public/assets/credit_cards/discover_cid-a3047727fc48922fb60924d854938c44924fe3580e89b22e07afc00d6fd6cc69.gif +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/american_express-bddd7ca01fc4468e3c198995040f060ee885cf3bf7dfd4525717c4457d518ed2.png +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/cirrus-4f875cd1f8b69d983eae94789064e64beee80a3d00d01c2407ef80ec4333bab5.png +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/delta-f8058ef2e9c52116978902e28d578c11d37b50f58c2ae20c05f431d483f34d79.png +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/diners_club-106b815730e7585d6fdf2899aa341979235406c82efcb489ed889ffc96cde880.png +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/directdebit-b02eaf68946ab2547eb63e884e749bff74ce3f7b4e54710d63efb930968d9f84.png +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/discover-7657f566fa8ab8b930fa2a1fa90caf0c5d5430afbd1b23425471cc29fc95c48a.png +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/egold-7fa5daf64d696d244c6e1d8847c1823c30934ac9ce2772d44622d150b0ab36c6.png +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/jcb-226f02afb616c5cc05c6e1c14cfa511f2484ea5212fe84864fd84e337707de3e.png +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/maestro-04253c601b66912deff0ee2a481c9bcf9154b8965ea4a52761db273fdff70144.png +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/master-c93be9b003aa2d00eabb76e6ae9bfd3412548da8b64606e4a552c945934b45c2.png +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/paypal-f85bbab879c983e0a969228fc30f9a6b8bf3897e82e519968c0c81368c0d0c96.png +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/solo-91b1d214eaa7c8cbbc1509f628c325f265e226053d1de40702e4ef32435cc71f.png +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/switch-808fe60a28ba3b4e4ebb41a712434d1fc0f5ae7d16b3fb290cd63d8e315c0975.png +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/visa-601f8c5e3262bae9694d84d6859e1f99f8f4c8c03f08456183b80ea19c469054.png +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/visaelectron-6ac6e40b7af2dedd1ee0aad0665fae12f2ebf690c8421fe0f24141d02643be75.png +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/westernunion-5060c8fc7fe0efd1d05f9f39ea85d87d9117f7d8ac92de1fc7acdd740cbef338.png +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/wirecard-0570018a538835cb2b0f0ab5ae72cc4b01661d0369c1b9977318a914509d4139.png +0 -0
- data/spec/dummy/public/assets/credit_cards/icons/worldpay-114e072092625fad239074dd7851848fdc7529e548145fa7ec6e564dbb2056a6.png +0 -0
- data/spec/dummy/public/assets/credit_cards/master_cid-aebcf5a0020689ae243e0b8c31da62d8801c1d071bfe0c7c97528fc298abbf96.jpg +0 -0
- data/spec/dummy/public/assets/credit_cards/visa_cid-0c885c2d8c5795439e23387124fcd92b7f330589a755c13c78556d19657d9c14.gif +0 -0
- data/spec/dummy/public/assets/doorkeeper/admin/application-a644908e7bab54fb749be0f59fb64a7480bbf9c4c2b79d4a65791cb7ab4d8730.css +18 -0
- data/spec/dummy/public/assets/doorkeeper/admin/application-a644908e7bab54fb749be0f59fb64a7480bbf9c4c2b79d4a65791cb7ab4d8730.css.gz +0 -0
- data/spec/dummy/public/assets/doorkeeper/application-c93dac2ad9d65e3393e0e2c958481e86ef7a5e5b0f6ce406842a7b99b25a4850.css +83 -0
- data/spec/dummy/public/assets/doorkeeper/application-c93dac2ad9d65e3393e0e2c958481e86ef7a5e5b0f6ce406842a7b99b25a4850.css.gz +0 -0
- data/spec/dummy/public/assets/favicon-92e86d463e909754599d66730477622cd3dd0b9bff58c47c9c38bebceb8073e5.ico +0 -0
- data/spec/dummy/public/assets/favicon-92e86d463e909754599d66730477622cd3dd0b9bff58c47c9c38bebceb8073e5.ico.gz +0 -0
- data/spec/dummy/public/assets/jquery-ui/ui-icons_444444_256x240-31d988765b4e6f56553c29588c500381dc3e6f0aa2980c8212202e5644aefd5d.png +0 -0
- data/spec/dummy/public/assets/jquery-ui/ui-icons_555555_256x240-32175261daee76c82bb0edf0eea16a56421866fbc31e94f3c1d570aa114502f5.png +0 -0
- data/spec/dummy/public/assets/jquery-ui/ui-icons_777620_256x240-0b020fc6e696d88d296e7bb1f61f1eb2ad827848e2c7382a4c3e0999e702dd9b.png +0 -0
- data/spec/dummy/public/assets/jquery-ui/ui-icons_777777_256x240-faf32007ae120c302213557626e660dd10e711c5dd4f1113d35f26dc05b78d2f.png +0 -0
- data/spec/dummy/public/assets/jquery-ui/ui-icons_cc0000_256x240-40985a64b4d5dd213fba27fcd862a1bd1b337a97674f6ff0b9ec20abcee4bc69.png +0 -0
- data/spec/dummy/public/assets/jquery-ui/ui-icons_ffffff_256x240-350df1b7131037de20e83c5c0f3a41a770d2ac48b5762ea772b3f4a8a7b9d47a.png +0 -0
- data/spec/dummy/public/assets/jquery.jstree/themes/spree/style-2470eb16445ffbdc7a49f4d003d39aa0362a27d31f983631067ad1a198ec9440.css +144 -0
- data/spec/dummy/public/assets/jquery.jstree/themes/spree/style-2470eb16445ffbdc7a49f4d003d39aa0362a27d31f983631067ad1a198ec9440.css.gz +0 -0
- data/spec/dummy/public/assets/jquery.jstree/themes/spree/throbber-4e4d43ccac9f0ed6eb6f48ea2b00e10a578b68df0e162df6c4c19d2c9725c04b.gif +0 -0
- data/spec/dummy/public/assets/logo/spree_50-0ae687ccd486b63b01687b1df9e5394430f6fce3ab40c28250b179be4363ddc1.png +0 -0
- data/spec/dummy/public/assets/noimage/large-fe154e843e2b66339f5460ae669c9a6307224a451ed6ba86479c8bf9837ede96.png +0 -0
- data/spec/dummy/public/assets/noimage/mini-d5d987414566f22657bbe0b08a980ddb4230d156845a31ab3cad0a0825016ce8.png +0 -0
- data/spec/dummy/public/assets/noimage/product-fe154e843e2b66339f5460ae669c9a6307224a451ed6ba86479c8bf9837ede96.png +0 -0
- data/spec/dummy/public/assets/noimage/small-1eaf254c069b00a8a692912bddd1660da5f1f80ac202c6bdc4d81b40fd2e0792.png +0 -0
- data/spec/dummy/public/assets/select2-d6b5d8d83dbc18fb8d77c8761d331cd9e5123c9684950bab0406e98a24ac5ae8.png +0 -0
- data/spec/dummy/public/assets/select2-spinner-f6ecff617ec2ba7f559e6f535cad9b70a3f91120737535dab4d4548a6c83576c.gif +0 -0
- data/spec/dummy/public/assets/select2_locale_ar-bc0d626cff33032b13b9d8be220714308a915ac598183fbeafd6a69d2e69685f.js +20 -0
- data/spec/dummy/public/assets/select2_locale_ar-bc0d626cff33032b13b9d8be220714308a915ac598183fbeafd6a69d2e69685f.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_az-17ed2058772cfa1896093f5d59dc7031dc5fc2e539c55d8085fa1e68d3fcd927.js +21 -0
- data/spec/dummy/public/assets/select2_locale_az-17ed2058772cfa1896093f5d59dc7031dc5fc2e539c55d8085fa1e68d3fcd927.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_bg-42c546b39ddf465f36571419fd70bb4f6e44ca4bba6443f8dc62228121441f49.js +21 -0
- data/spec/dummy/public/assets/select2_locale_bg-42c546b39ddf465f36571419fd70bb4f6e44ca4bba6443f8dc62228121441f49.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_ca-b9b0ff178adfc196bc79779e5e641069f376b9ec7ee3f3e2836c5df71511eea8.js +20 -0
- data/spec/dummy/public/assets/select2_locale_ca-b9b0ff178adfc196bc79779e5e641069f376b9ec7ee3f3e2836c5df71511eea8.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_cs-27b95541bf7f4e2155d0f0cdc7af062aac217a807b348036c417eea70b0a2897.js +52 -0
- data/spec/dummy/public/assets/select2_locale_cs-27b95541bf7f4e2155d0f0cdc7af062aac217a807b348036c417eea70b0a2897.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_da-0772bb942f0ec472cd18b49adcfaf7bab125b32648e0759016ae6e39ea417f0a.js +20 -0
- data/spec/dummy/public/assets/select2_locale_da-0772bb942f0ec472cd18b49adcfaf7bab125b32648e0759016ae6e39ea417f0a.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_de-7ca5c4c1e6d14a86b68592e8e11974657602388c7745f8f7e3a1e4510614be7e.js +19 -0
- data/spec/dummy/public/assets/select2_locale_de-7ca5c4c1e6d14a86b68592e8e11974657602388c7745f8f7e3a1e4510614be7e.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_el-48bf3eef5ba982cb3ff1b70638a91c5ac1860fbc336728eb810f1f7fd1fd9812.js +20 -0
- data/spec/dummy/public/assets/select2_locale_el-48bf3eef5ba982cb3ff1b70638a91c5ac1860fbc336728eb810f1f7fd1fd9812.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_es-c055394ecd38af8b84f490a20ff6291780ab22b123d88457d8338868db2a329d.js +18 -0
- data/spec/dummy/public/assets/select2_locale_es-c055394ecd38af8b84f490a20ff6291780ab22b123d88457d8338868db2a329d.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_et-cda4d2bc92439ee6207db832ea34fca366cf2119268b755023cc4861da6d7df9.js +20 -0
- data/spec/dummy/public/assets/select2_locale_et-cda4d2bc92439ee6207db832ea34fca366cf2119268b755023cc4861da6d7df9.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_eu-b6732998ea9a29f182c344889e9de5cf0a3d8e9e839ebdc5ce4aee3f293af1d8.js +46 -0
- data/spec/dummy/public/assets/select2_locale_eu-b6732998ea9a29f182c344889e9de5cf0a3d8e9e839ebdc5ce4aee3f293af1d8.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_fa-d98464510d779afc9e003a282b93000caff3b66d3f9fef5fe54df44ea9732909.js +22 -0
- data/spec/dummy/public/assets/select2_locale_fa-d98464510d779afc9e003a282b93000caff3b66d3f9fef5fe54df44ea9732909.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_fi-d3aca88f97706ace6062209f688e77f477f4ba66541a2f797ae05d57045a54f5.js +31 -0
- data/spec/dummy/public/assets/select2_locale_fi-d3aca88f97706ace6062209f688e77f477f4ba66541a2f797ae05d57045a54f5.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_fr-cca326cd42a17caf363015e0632ae360a2d9c924f15b05a0d7749c6575d4aa24.js +19 -0
- data/spec/dummy/public/assets/select2_locale_fr-cca326cd42a17caf363015e0632ae360a2d9c924f15b05a0d7749c6575d4aa24.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_gl-4a273116f1ea3b1fafd8a04cc4b713277e8e4c0f0576196dc30e106dd8125e01.js +46 -0
- data/spec/dummy/public/assets/select2_locale_gl-4a273116f1ea3b1fafd8a04cc4b713277e8e4c0f0576196dc30e106dd8125e01.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_he-7d98d7c309a3707124d24a22741efad6c676dfa669e3a573619ffe806a98c0a3.js +20 -0
- data/spec/dummy/public/assets/select2_locale_he-7d98d7c309a3707124d24a22741efad6c676dfa669e3a573619ffe806a98c0a3.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_hr-fb37ea68ac5e8664d41bac4727949c4269753586ec93d26b4f8f43ca50d901fd.js +25 -0
- data/spec/dummy/public/assets/select2_locale_hr-fb37ea68ac5e8664d41bac4727949c4269753586ec93d26b4f8f43ca50d901fd.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_hu-e8969fcadba7926e0a2e1e6a20f5df3ce4818b13196d07e6ce16879f602d0583.js +18 -0
- data/spec/dummy/public/assets/select2_locale_hu-e8969fcadba7926e0a2e1e6a20f5df3ce4818b13196d07e6ce16879f602d0583.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_id-f968506088bfa7c18689a5bb0331647f36a97352c590b99fc2949f3823e9f2cd.js +20 -0
- data/spec/dummy/public/assets/select2_locale_id-f968506088bfa7c18689a5bb0331647f36a97352c590b99fc2949f3823e9f2cd.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_is-012b25e8d0f0d399924a26f0c9aebc4615006276ddec1f3d84e713f97cacd0d2.js +18 -0
- data/spec/dummy/public/assets/select2_locale_is-012b25e8d0f0d399924a26f0c9aebc4615006276ddec1f3d84e713f97cacd0d2.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_it-dcc45fb356269c7d56bee8485bfaa9b7d768b813d62d57dea6a1655a9df000ea.js +18 -0
- data/spec/dummy/public/assets/select2_locale_it-dcc45fb356269c7d56bee8485bfaa9b7d768b813d62d57dea6a1655a9df000ea.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_ja-b2b311c42b079b65dc4bd77084a487f23d814fadcafeedeed3b134533ee47b6a.js +18 -0
- data/spec/dummy/public/assets/select2_locale_ja-b2b311c42b079b65dc4bd77084a487f23d814fadcafeedeed3b134533ee47b6a.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_ka-6d93c37b19d576388bb67f4afa6dda1a352c9d99478ffac539c9b194fa5707ee.js +20 -0
- data/spec/dummy/public/assets/select2_locale_ka-6d93c37b19d576388bb67f4afa6dda1a352c9d99478ffac539c9b194fa5707ee.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_ko-9dec66b6f325e13b849ec4e800e0693429625e6c859262f14e7a53e1e761c5ac.js +20 -0
- data/spec/dummy/public/assets/select2_locale_ko-9dec66b6f325e13b849ec4e800e0693429625e6c859262f14e7a53e1e761c5ac.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_lt-b56ef195311a71cb8a3e2a55c20faf70f723a9232caa8116a19d3ea288586350.js +27 -0
- data/spec/dummy/public/assets/select2_locale_lt-b56ef195311a71cb8a3e2a55c20faf70f723a9232caa8116a19d3ea288586350.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_lv-334e18838f800abaff51f83b34beaba3e0c1640bc957bbefd6722bfa518cc04c.js +20 -0
- data/spec/dummy/public/assets/select2_locale_lv-334e18838f800abaff51f83b34beaba3e0c1640bc957bbefd6722bfa518cc04c.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_mk-ac7a50fd55dd9ff5b4163857f6eba040aeaf7420c696b95cf5bcb00e958a3d5b.js +20 -0
- data/spec/dummy/public/assets/select2_locale_mk-ac7a50fd55dd9ff5b4163857f6eba040aeaf7420c696b95cf5bcb00e958a3d5b.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_ms-f9c316c48b79dd693ca74b9462e8080400dc5d47ab516ac31b1272791979c3ce.js +20 -0
- data/spec/dummy/public/assets/select2_locale_ms-f9c316c48b79dd693ca74b9462e8080400dc5d47ab516ac31b1272791979c3ce.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_nl-b3bd6541e18715eabc9b402bc87ee926471f16806c644506dee5f2f3d967b286.js +18 -0
- data/spec/dummy/public/assets/select2_locale_nl-b3bd6541e18715eabc9b402bc87ee926471f16806c644506dee5f2f3d967b286.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_no-450ea11297318434f9c5e427302333062ba0b4497f866f8010a85294604cf801.js +21 -0
- data/spec/dummy/public/assets/select2_locale_no-450ea11297318434f9c5e427302333062ba0b4497f866f8010a85294604cf801.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_pl-54e8b177a932b0c6f70ccc81f3c650e3c488bb99bd56e1d8e6187415de649b86.js +26 -0
- data/spec/dummy/public/assets/select2_locale_pl-54e8b177a932b0c6f70ccc81f3c650e3c488bb99bd56e1d8e6187415de649b86.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_pt-BR-bb12e4123097c6327ec6cbc82159dbe1574cb2fa6f1dcfc1a6af3c00755c31d5.js +18 -0
- data/spec/dummy/public/assets/select2_locale_pt-BR-bb12e4123097c6327ec6cbc82159dbe1574cb2fa6f1dcfc1a6af3c00755c31d5.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_pt-PT-2dc9ef1f7bf4ce21d4be57f85c304d525b2b5f19ad62b714ba94d2b118c84498.js +18 -0
- data/spec/dummy/public/assets/select2_locale_pt-PT-2dc9ef1f7bf4ce21d4be57f85c304d525b2b5f19ad62b714ba94d2b118c84498.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_ro-8c0bb8fa885ab577e50d6643d9ec68f87d9ba2a99b3e436c6cb21f67421d870a.js +18 -0
- data/spec/dummy/public/assets/select2_locale_ro-8c0bb8fa885ab577e50d6643d9ec68f87d9ba2a99b3e436c6cb21f67421d870a.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_rs-1016c79a680bca3c3b8095ad04e67c9b89412ff6f6051dbc196627828e592c9b.js +20 -0
- data/spec/dummy/public/assets/select2_locale_rs-1016c79a680bca3c3b8095ad04e67c9b89412ff6f6051dbc196627828e592c9b.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_ru-4c1cd4a76b568e7452b09b8a665a28f5808d5854aec120985101c17b7b960687.js +24 -0
- data/spec/dummy/public/assets/select2_locale_ru-4c1cd4a76b568e7452b09b8a665a28f5808d5854aec120985101c17b7b960687.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_sk-c91946ae59a294854489563706f97cb3b690617ec2dbac799b184c6336189f1b.js +51 -0
- data/spec/dummy/public/assets/select2_locale_sk-c91946ae59a294854489563706f97cb3b690617ec2dbac799b184c6336189f1b.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_sv-92964e4300e520e23f5f83492c2e750b5875484b6420ed54c5c7422e50bff49e.js +20 -0
- data/spec/dummy/public/assets/select2_locale_sv-92964e4300e520e23f5f83492c2e750b5875484b6420ed54c5c7422e50bff49e.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_th-9d64c8b41fcc2d5d28d505f0d7b325b04edc51ca0ac74b3d9c5dd0275fa4dcbd.js +20 -0
- data/spec/dummy/public/assets/select2_locale_th-9d64c8b41fcc2d5d28d505f0d7b325b04edc51ca0ac74b3d9c5dd0275fa4dcbd.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_tr-22bf3c62ec7c4d81cd046c1ce7b60f3921ab75099438d5e547d2beab674cd5f6.js +20 -0
- data/spec/dummy/public/assets/select2_locale_tr-22bf3c62ec7c4d81cd046c1ce7b60f3921ab75099438d5e547d2beab674cd5f6.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_ug-CN-3a320caea8f59ef6c10c7fa462697a38029ab59a4450390c2ca9ec509b4a8263.js +17 -0
- data/spec/dummy/public/assets/select2_locale_ug-CN-3a320caea8f59ef6c10c7fa462697a38029ab59a4450390c2ca9ec509b4a8263.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_uk-e912e0547b8a72e9caa72693c78a0e88db81dcd03f1cee8db45456c4eacbfab3.js +26 -0
- data/spec/dummy/public/assets/select2_locale_uk-e912e0547b8a72e9caa72693c78a0e88db81dcd03f1cee8db45456c4eacbfab3.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_vi-29766aff66ab669df184f4e4402f1d67ea7a5c3369a553e7cf0c64bbc46f6db6.js +21 -0
- data/spec/dummy/public/assets/select2_locale_vi-29766aff66ab669df184f4e4402f1d67ea7a5c3369a553e7cf0c64bbc46f6db6.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_zh-CN-86b8afaa82c0b8de71d37c2cfe3949a130055880c203c785022e32a6cb7f7aaa.js +17 -0
- data/spec/dummy/public/assets/select2_locale_zh-CN-86b8afaa82c0b8de71d37c2cfe3949a130055880c203c785022e32a6cb7f7aaa.js.gz +0 -0
- data/spec/dummy/public/assets/select2_locale_zh-TW-a408bf991b2672ab5d537ff08915acecd2c043311c31f6b4041b8e04b51ba2a4.js +17 -0
- data/spec/dummy/public/assets/select2_locale_zh-TW-a408bf991b2672ab5d537ff08915acecd2c043311c31f6b4041b8e04b51ba2a4.js.gz +0 -0
- data/spec/dummy/public/assets/select2x2-6fe28d687dc0ed4d96016238c608ba1e7198c9c9accfa0b360b78018b9fb9bc2.png +0 -0
- data/spec/dummy/public/assets/spree/backend/address_states-76840b8177a1aba71ee06233175b713fb4855f7b4fe28db303c47be7807ae36b.js +33 -0
- data/spec/dummy/public/assets/spree/backend/address_states-76840b8177a1aba71ee06233175b713fb4855f7b4fe28db303c47be7807ae36b.js.gz +0 -0
- data/spec/dummy/public/assets/spree/backend/all-7a9f9297e55c2d8089e033e69e2a1458be789bdf1ea980f6d285886026badd52.css +10939 -0
- data/spec/dummy/public/assets/spree/backend/all-7a9f9297e55c2d8089e033e69e2a1458be789bdf1ea980f6d285886026badd52.css.gz +0 -0
- data/spec/dummy/public/assets/spree/backend/all-da2e1beed5f92ec67ec299f8a83b4d6cf6858f47fe7f75de11c11732253a9542.js +33204 -0
- data/spec/dummy/public/assets/spree/backend/all-da2e1beed5f92ec67ec299f8a83b4d6cf6858f47fe7f75de11c11732253a9542.js.gz +0 -0
- data/spec/dummy/public/assets/spree/frontend/all-18b1bdb166c10b8b6e8a17fc67461e63abe20eac64986802a13d71e1894b0918.js +16398 -0
- data/spec/dummy/public/assets/spree/frontend/all-18b1bdb166c10b8b6e8a17fc67461e63abe20eac64986802a13d71e1894b0918.js.gz +0 -0
- data/spec/dummy/public/assets/spree/frontend/all-46820e63933a6180828e01f6fc77d4535d878536540a5d13f08f40d4aa0ac5c6.css +5868 -0
- data/spec/dummy/public/assets/spree/frontend/all-46820e63933a6180828e01f6fc77d4535d878536540a5d13f08f40d4aa0ac5c6.css.gz +0 -0
- data/spec/dummy/public/assets/spree/frontend/checkout/shipment-9295a502364634d0279a37cf8b01f068adc338048fb1319162372ab527b86d4e.js +49 -0
- data/spec/dummy/public/assets/spree/frontend/checkout/shipment-9295a502364634d0279a37cf8b01f068adc338048fb1319162372ab527b86d4e.js.gz +0 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/tmp/development_secret.txt +1 -0
- data/spec/dummy/vendor/assets/javascripts/spree/backend/all.js +15 -0
- data/spec/dummy/vendor/assets/javascripts/spree/frontend/all.js +16 -0
- data/spec/dummy/vendor/assets/stylesheets/spree/backend/all.css +14 -0
- data/spec/dummy/vendor/assets/stylesheets/spree/frontend/all.css +14 -0
- data/spec/features/administer_spec.rb +48 -0
- data/spec/features/callback_spec.rb +88 -0
- data/spec/features/checkout_spec.rb +74 -0
- data/spec/features/creditcard_spec.rb +63 -0
- data/spec/features/paypal_spec.rb +63 -0
- data/spec/models/spree/billing_integration_spec.rb +26 -0
- data/spec/models/spree/payment_method/sisow_billing/bancontact_spec.rb +34 -0
- data/spec/models/spree/payment_method/sisow_billing/ideal_spec.rb +42 -0
- data/spec/models/spree/payment_method/sisow_billing/paypalec_spec.rb +66 -0
- data/spec/models/spree/payment_method/sisow_billing/purchase_spec.rb +20 -0
- data/spec/models/spree/payment_method/sisow_billing/sisow_payment_method_spec.rb +19 -0
- data/spec/models/spree/payment_method/sisow_billing/sofort_spec.rb +34 -0
- data/spec/models/spree/payment_method/sisow_billing_spec.rb +268 -0
- data/spec/models/spree/sisow_transaction.rb +4 -0
- data/spec/sisow.yml +4 -0
- data/spec/spec_helper.rb +99 -0
- data/spec/support/spree/spree_stubs.rb +17 -0
- data/spec/support/webmock/web_mock_fixture_helpers.rb +6 -0
- data/spec/webmock_files/bancontact_redirect_url_output +10 -0
- data/spec/webmock_files/creditcard_redirect_url_output +10 -0
- data/spec/webmock_files/ideal_issuer_output +10 -0
- data/spec/webmock_files/ideal_redirect_url_output +10 -0
- data/spec/webmock_files/paypal_redirect_url_output +10 -0
- data/spec/webmock_files/sofort_redirect_url_output +10 -0
- metadata +1106 -4
@@ -0,0 +1,482 @@
|
|
1
|
+
# This migration comes from spree (originally 20120831092320)
|
2
|
+
class SpreeOneTwo < ActiveRecord::Migration[4.2]
|
3
|
+
def up
|
4
|
+
# This migration is just a compressed version of all the previous
|
5
|
+
# migrations for spree_core. Do not run it if one of the core tables
|
6
|
+
# already exists. Assume the best.
|
7
|
+
return if data_source_exists?(:spree_addresses)
|
8
|
+
|
9
|
+
|
10
|
+
create_table :spree_activators do |t|
|
11
|
+
t.string :description
|
12
|
+
t.datetime :expires_at
|
13
|
+
t.datetime :starts_at
|
14
|
+
t.string :name
|
15
|
+
t.string :event_name
|
16
|
+
t.string :type
|
17
|
+
t.integer :usage_limit
|
18
|
+
t.string :match_policy, default: 'all'
|
19
|
+
t.string :code
|
20
|
+
t.boolean :advertise, default: false
|
21
|
+
t.string :path
|
22
|
+
t.timestamps null: false, precision: 6
|
23
|
+
end
|
24
|
+
|
25
|
+
create_table :spree_addresses do |t|
|
26
|
+
t.string :firstname
|
27
|
+
t.string :lastname
|
28
|
+
t.string :address1
|
29
|
+
t.string :address2
|
30
|
+
t.string :city
|
31
|
+
t.string :zipcode
|
32
|
+
t.string :phone
|
33
|
+
t.string :state_name
|
34
|
+
t.string :alternative_phone
|
35
|
+
t.string :company
|
36
|
+
t.references :state
|
37
|
+
t.references :country
|
38
|
+
t.timestamps null: false, precision: 6
|
39
|
+
end
|
40
|
+
|
41
|
+
add_index :spree_addresses, [:firstname], name: 'index_addresses_on_firstname'
|
42
|
+
add_index :spree_addresses, [:lastname], name: 'index_addresses_on_lastname'
|
43
|
+
|
44
|
+
create_table :spree_adjustments do |t|
|
45
|
+
t.references :source, polymorphic: true
|
46
|
+
t.references :adjustable, polymorphic: true
|
47
|
+
t.references :originator, polymorphic: true
|
48
|
+
t.decimal :amount, precision: 8, scale: 2
|
49
|
+
t.string :label
|
50
|
+
t.boolean :mandatory
|
51
|
+
t.boolean :locked
|
52
|
+
t.boolean :eligible, default: true
|
53
|
+
t.timestamps null: false, precision: 6
|
54
|
+
end
|
55
|
+
|
56
|
+
add_index :spree_adjustments, [:adjustable_id], name: 'index_adjustments_on_order_id'
|
57
|
+
|
58
|
+
create_table :spree_assets do |t|
|
59
|
+
t.references :viewable, polymorphic: true
|
60
|
+
t.integer :attachment_width
|
61
|
+
t.integer :attachment_height
|
62
|
+
t.integer :attachment_file_size
|
63
|
+
t.integer :position
|
64
|
+
t.string :attachment_content_type
|
65
|
+
t.string :attachment_file_name
|
66
|
+
t.string :type, limit: 75
|
67
|
+
t.datetime :attachment_updated_at
|
68
|
+
t.text :alt
|
69
|
+
end
|
70
|
+
|
71
|
+
add_index :spree_assets, [:viewable_id], name: 'index_assets_on_viewable_id'
|
72
|
+
add_index :spree_assets, [:viewable_type, :type], name: 'index_assets_on_viewable_type_and_type'
|
73
|
+
|
74
|
+
create_table :spree_calculators do |t|
|
75
|
+
t.string :type
|
76
|
+
t.references :calculable, polymorphic: true
|
77
|
+
t.timestamps null: false, precision: 6
|
78
|
+
end
|
79
|
+
|
80
|
+
create_table :spree_configurations do |t|
|
81
|
+
t.string :name
|
82
|
+
t.string :type, limit: 50
|
83
|
+
t.timestamps null: false, precision: 6
|
84
|
+
end
|
85
|
+
|
86
|
+
add_index :spree_configurations, [:name, :type], name: 'index_spree_configurations_on_name_and_type'
|
87
|
+
|
88
|
+
create_table :spree_countries do |t|
|
89
|
+
t.string :iso_name
|
90
|
+
t.string :iso
|
91
|
+
t.string :iso3
|
92
|
+
t.string :name
|
93
|
+
t.integer :numcode
|
94
|
+
end
|
95
|
+
|
96
|
+
create_table :spree_credit_cards do |t|
|
97
|
+
t.string :month
|
98
|
+
t.string :year
|
99
|
+
t.string :cc_type
|
100
|
+
t.string :last_digits
|
101
|
+
t.string :first_name
|
102
|
+
t.string :last_name
|
103
|
+
t.string :start_month
|
104
|
+
t.string :start_year
|
105
|
+
t.string :issue_number
|
106
|
+
t.references :address
|
107
|
+
t.string :gateway_customer_profile_id
|
108
|
+
t.string :gateway_payment_profile_id
|
109
|
+
t.timestamps null: false, precision: 6
|
110
|
+
end
|
111
|
+
|
112
|
+
create_table :spree_gateways do |t|
|
113
|
+
t.string :type
|
114
|
+
t.string :name
|
115
|
+
t.text :description
|
116
|
+
t.boolean :active, default: true
|
117
|
+
t.string :environment, default: 'development'
|
118
|
+
t.string :server, default: 'test'
|
119
|
+
t.boolean :test_mode, default: true
|
120
|
+
t.timestamps null: false, precision: 6
|
121
|
+
end
|
122
|
+
|
123
|
+
create_table :spree_inventory_units do |t|
|
124
|
+
t.integer :lock_version, default: 0
|
125
|
+
t.string :state
|
126
|
+
t.references :variant
|
127
|
+
t.references :order
|
128
|
+
t.references :shipment
|
129
|
+
t.references :return_authorization
|
130
|
+
t.timestamps null: false, precision: 6
|
131
|
+
end
|
132
|
+
|
133
|
+
add_index :spree_inventory_units, [:order_id], name: 'index_inventory_units_on_order_id'
|
134
|
+
add_index :spree_inventory_units, [:shipment_id], name: 'index_inventory_units_on_shipment_id'
|
135
|
+
add_index :spree_inventory_units, [:variant_id], name: 'index_inventory_units_on_variant_id'
|
136
|
+
|
137
|
+
create_table :spree_line_items do |t|
|
138
|
+
t.references :variant
|
139
|
+
t.references :order
|
140
|
+
t.integer :quantity, null: false
|
141
|
+
t.decimal :price, precision: 8, scale: 2, null: false
|
142
|
+
t.timestamps null: false, precision: 6
|
143
|
+
end
|
144
|
+
|
145
|
+
add_index :spree_line_items, [:order_id], name: 'index_spree_line_items_on_order_id'
|
146
|
+
add_index :spree_line_items, [:variant_id], name: 'index_spree_line_items_on_variant_id'
|
147
|
+
|
148
|
+
create_table :spree_log_entries do |t|
|
149
|
+
t.references :source, polymorphic: true
|
150
|
+
t.text :details
|
151
|
+
t.timestamps null: false, precision: 6
|
152
|
+
end
|
153
|
+
|
154
|
+
create_table :spree_mail_methods do |t|
|
155
|
+
t.string :environment
|
156
|
+
t.boolean :active, default: true
|
157
|
+
t.timestamps null: false, precision: 6
|
158
|
+
end
|
159
|
+
|
160
|
+
create_table :spree_option_types do |t|
|
161
|
+
t.string :name, limit: 100
|
162
|
+
t.string :presentation, limit: 100
|
163
|
+
t.integer :position, default: 0, null: false
|
164
|
+
t.timestamps null: false, precision: 6
|
165
|
+
end
|
166
|
+
|
167
|
+
create_table :spree_option_types_prototypes, id: false do |t|
|
168
|
+
t.references :prototype
|
169
|
+
t.references :option_type
|
170
|
+
end
|
171
|
+
|
172
|
+
create_table :spree_option_values do |t|
|
173
|
+
t.integer :position
|
174
|
+
t.string :name
|
175
|
+
t.string :presentation
|
176
|
+
t.references :option_type
|
177
|
+
t.timestamps null: false, precision: 6
|
178
|
+
end
|
179
|
+
|
180
|
+
create_table :spree_option_values_variants, id: false do |t|
|
181
|
+
t.references :variant
|
182
|
+
t.references :option_value
|
183
|
+
end
|
184
|
+
|
185
|
+
add_index :spree_option_values_variants, [:variant_id, :option_value_id], name: 'index_option_values_variants_on_variant_id_and_option_value_id'
|
186
|
+
add_index :spree_option_values_variants, [:variant_id], name: 'index_spree_option_values_variants_on_variant_id'
|
187
|
+
|
188
|
+
create_table :spree_orders do |t|
|
189
|
+
t.string :number, limit: 15
|
190
|
+
t.decimal :item_total, precision: 8, scale: 2, default: 0.0, null: false
|
191
|
+
t.decimal :total, precision: 8, scale: 2, default: 0.0, null: false
|
192
|
+
t.string :state
|
193
|
+
t.decimal :adjustment_total, precision: 8, scale: 2, default: 0.0, null: false
|
194
|
+
t.references :user
|
195
|
+
t.datetime :completed_at
|
196
|
+
t.references :bill_address
|
197
|
+
t.references :ship_address
|
198
|
+
t.decimal :payment_total, precision: 8, scale: 2, default: 0.0
|
199
|
+
t.references :shipping_method
|
200
|
+
t.string :shipment_state
|
201
|
+
t.string :payment_state
|
202
|
+
t.string :email
|
203
|
+
t.text :special_instructions
|
204
|
+
t.timestamps null: false, precision: 6
|
205
|
+
end
|
206
|
+
|
207
|
+
add_index :spree_orders, [:number], name: 'index_spree_orders_on_number'
|
208
|
+
|
209
|
+
create_table :spree_payment_methods do |t|
|
210
|
+
t.string :type
|
211
|
+
t.string :name
|
212
|
+
t.text :description
|
213
|
+
t.boolean :active, default: true
|
214
|
+
t.string :environment, default: 'development'
|
215
|
+
t.datetime :deleted_at
|
216
|
+
t.string :display_on
|
217
|
+
t.timestamps null: false, precision: 6
|
218
|
+
end
|
219
|
+
|
220
|
+
create_table :spree_payments do |t|
|
221
|
+
t.decimal :amount, precision: 8, scale: 2, default: 0.0, null: false
|
222
|
+
t.references :order
|
223
|
+
t.references :source, polymorphic: true
|
224
|
+
t.references :payment_method
|
225
|
+
t.string :state
|
226
|
+
t.string :response_code
|
227
|
+
t.string :avs_response
|
228
|
+
t.timestamps null: false, precision: 6
|
229
|
+
end
|
230
|
+
|
231
|
+
create_table :spree_preferences do |t|
|
232
|
+
t.string :name, limit: 100
|
233
|
+
t.references :owner, polymorphic: true
|
234
|
+
t.text :value
|
235
|
+
t.string :key
|
236
|
+
t.string :value_type
|
237
|
+
t.timestamps null: false, precision: 6
|
238
|
+
end
|
239
|
+
|
240
|
+
add_index :spree_preferences, [:key], name: 'index_spree_preferences_on_key', unique: true
|
241
|
+
|
242
|
+
create_table :spree_product_option_types do |t|
|
243
|
+
t.integer :position
|
244
|
+
t.references :product
|
245
|
+
t.references :option_type
|
246
|
+
t.timestamps null: false, precision: 6
|
247
|
+
end
|
248
|
+
|
249
|
+
create_table :spree_product_properties do |t|
|
250
|
+
t.string :value
|
251
|
+
t.references :product
|
252
|
+
t.references :property
|
253
|
+
t.timestamps null: false, precision: 6
|
254
|
+
end
|
255
|
+
|
256
|
+
add_index :spree_product_properties, [:product_id], name: 'index_product_properties_on_product_id'
|
257
|
+
|
258
|
+
create_table :spree_products do |t|
|
259
|
+
t.string :name, default: '', null: false
|
260
|
+
t.text :description
|
261
|
+
t.datetime :available_on
|
262
|
+
t.datetime :deleted_at
|
263
|
+
t.string :permalink
|
264
|
+
t.string :meta_description
|
265
|
+
t.string :meta_keywords
|
266
|
+
t.references :tax_category
|
267
|
+
t.references :shipping_category
|
268
|
+
t.integer :count_on_hand, default: 0, null: false
|
269
|
+
t.timestamps null: false, precision: 6
|
270
|
+
end
|
271
|
+
|
272
|
+
add_index :spree_products, [:available_on], name: 'index_spree_products_on_available_on'
|
273
|
+
add_index :spree_products, [:deleted_at], name: 'index_spree_products_on_deleted_at'
|
274
|
+
add_index :spree_products, [:name], name: 'index_spree_products_on_name'
|
275
|
+
add_index :spree_products, [:permalink], name: 'index_spree_products_on_permalink'
|
276
|
+
|
277
|
+
create_table :spree_products_taxons, id: false do |t|
|
278
|
+
t.references :product
|
279
|
+
t.references :taxon
|
280
|
+
end
|
281
|
+
|
282
|
+
add_index :spree_products_taxons, [:product_id], name: 'index_spree_products_taxons_on_product_id'
|
283
|
+
add_index :spree_products_taxons, [:taxon_id], name: 'index_spree_products_taxons_on_taxon_id'
|
284
|
+
|
285
|
+
create_table :spree_properties do |t|
|
286
|
+
t.string :name
|
287
|
+
t.string :presentation, null: false
|
288
|
+
t.timestamps null: false, precision: 6
|
289
|
+
end
|
290
|
+
|
291
|
+
create_table :spree_properties_prototypes, id: false do |t|
|
292
|
+
t.references :prototype
|
293
|
+
t.references :property
|
294
|
+
end
|
295
|
+
|
296
|
+
create_table :spree_prototypes do |t|
|
297
|
+
t.string :name
|
298
|
+
t.timestamps null: false, precision: 6
|
299
|
+
end
|
300
|
+
|
301
|
+
create_table :spree_return_authorizations do |t|
|
302
|
+
t.string :number
|
303
|
+
t.string :state
|
304
|
+
t.decimal :amount, precision: 8, scale: 2, default: 0.0, null: false
|
305
|
+
t.references :order
|
306
|
+
t.text :reason
|
307
|
+
t.timestamps null: false, precision: 6
|
308
|
+
end
|
309
|
+
|
310
|
+
create_table :spree_roles do |t|
|
311
|
+
t.string :name
|
312
|
+
end
|
313
|
+
|
314
|
+
create_table :spree_roles_users, id: false do |t|
|
315
|
+
t.references :role
|
316
|
+
t.references :user
|
317
|
+
end
|
318
|
+
|
319
|
+
add_index :spree_roles_users, [:role_id], name: 'index_spree_roles_users_on_role_id'
|
320
|
+
add_index :spree_roles_users, [:user_id], name: 'index_spree_roles_users_on_user_id'
|
321
|
+
|
322
|
+
create_table :spree_shipments do |t|
|
323
|
+
t.string :tracking
|
324
|
+
t.string :number
|
325
|
+
t.decimal :cost, precision: 8, scale: 2
|
326
|
+
t.datetime :shipped_at
|
327
|
+
t.references :order
|
328
|
+
t.references :shipping_method
|
329
|
+
t.references :address
|
330
|
+
t.string :state
|
331
|
+
t.timestamps null: false, precision: 6
|
332
|
+
end
|
333
|
+
|
334
|
+
add_index :spree_shipments, [:number], name: 'index_shipments_on_number'
|
335
|
+
|
336
|
+
create_table :spree_shipping_categories do |t|
|
337
|
+
t.string :name
|
338
|
+
t.timestamps null: false, precision: 6
|
339
|
+
end
|
340
|
+
|
341
|
+
create_table :spree_shipping_methods do |t|
|
342
|
+
t.string :name
|
343
|
+
t.references :zone
|
344
|
+
t.string :display_on
|
345
|
+
t.references :shipping_category
|
346
|
+
t.boolean :match_none
|
347
|
+
t.boolean :match_all
|
348
|
+
t.boolean :match_one
|
349
|
+
t.datetime :deleted_at
|
350
|
+
t.timestamps null: false, precision: 6
|
351
|
+
end
|
352
|
+
|
353
|
+
create_table :spree_state_changes do |t|
|
354
|
+
t.string :name
|
355
|
+
t.string :previous_state
|
356
|
+
t.references :stateful
|
357
|
+
t.references :user
|
358
|
+
t.string :stateful_type
|
359
|
+
t.string :next_state
|
360
|
+
t.timestamps null: false, precision: 6
|
361
|
+
end
|
362
|
+
|
363
|
+
create_table :spree_states do |t|
|
364
|
+
t.string :name
|
365
|
+
t.string :abbr
|
366
|
+
t.references :country
|
367
|
+
end
|
368
|
+
|
369
|
+
create_table :spree_tax_categories do |t|
|
370
|
+
t.string :name
|
371
|
+
t.string :description
|
372
|
+
t.boolean :is_default, default: false
|
373
|
+
t.datetime :deleted_at
|
374
|
+
t.timestamps null: false, precision: 6
|
375
|
+
end
|
376
|
+
|
377
|
+
create_table :spree_tax_rates do |t|
|
378
|
+
t.decimal :amount, precision: 8, scale: 5
|
379
|
+
t.references :zone
|
380
|
+
t.references :tax_category
|
381
|
+
t.boolean :included_in_price, default: false
|
382
|
+
t.timestamps null: false, precision: 6
|
383
|
+
end
|
384
|
+
|
385
|
+
create_table :spree_taxonomies do |t|
|
386
|
+
t.string :name, null: false
|
387
|
+
t.timestamps null: false, precision: 6
|
388
|
+
end
|
389
|
+
|
390
|
+
create_table :spree_taxons do |t|
|
391
|
+
t.references :parent
|
392
|
+
t.integer :position, default: 0
|
393
|
+
t.string :name, null: false
|
394
|
+
t.string :permalink
|
395
|
+
t.references :taxonomy
|
396
|
+
t.integer :lft
|
397
|
+
t.integer :rgt
|
398
|
+
t.string :icon_file_name
|
399
|
+
t.string :icon_content_type
|
400
|
+
t.integer :icon_file_size
|
401
|
+
t.datetime :icon_updated_at
|
402
|
+
t.text :description
|
403
|
+
t.timestamps null: false, precision: 6
|
404
|
+
end
|
405
|
+
|
406
|
+
add_index :spree_taxons, [:parent_id], name: 'index_taxons_on_parent_id'
|
407
|
+
add_index :spree_taxons, [:permalink], name: 'index_taxons_on_permalink'
|
408
|
+
add_index :spree_taxons, [:taxonomy_id], name: 'index_taxons_on_taxonomy_id'
|
409
|
+
|
410
|
+
create_table :spree_tokenized_permissions, force: true do |t|
|
411
|
+
t.references :permissable, polymorphic: true
|
412
|
+
t.string :token
|
413
|
+
t.timestamps null: false, precision: 6
|
414
|
+
end
|
415
|
+
|
416
|
+
add_index :spree_tokenized_permissions, [:permissable_id, :permissable_type], name: 'index_tokenized_name_and_type'
|
417
|
+
|
418
|
+
create_table :spree_trackers do |t|
|
419
|
+
t.string :environment
|
420
|
+
t.string :analytics_id
|
421
|
+
t.boolean :active, default: true
|
422
|
+
t.timestamps null: false, precision: 6
|
423
|
+
end
|
424
|
+
|
425
|
+
create_table :spree_users do |t|
|
426
|
+
t.string :encrypted_password, limit: 128
|
427
|
+
t.string :password_salt, limit: 128
|
428
|
+
t.string :email
|
429
|
+
t.string :remember_token
|
430
|
+
t.string :persistence_token
|
431
|
+
t.string :reset_password_token
|
432
|
+
t.string :perishable_token
|
433
|
+
t.integer :sign_in_count, default: 0, null: false
|
434
|
+
t.integer :failed_attempts, default: 0, null: false
|
435
|
+
t.datetime :last_request_at
|
436
|
+
t.datetime :current_sign_in_at
|
437
|
+
t.datetime :last_sign_in_at
|
438
|
+
t.string :current_sign_in_ip
|
439
|
+
t.string :last_sign_in_ip
|
440
|
+
t.string :login
|
441
|
+
t.references :ship_address
|
442
|
+
t.references :bill_address
|
443
|
+
t.string :authentication_token
|
444
|
+
t.string :unlock_token
|
445
|
+
t.datetime :locked_at
|
446
|
+
t.datetime :remember_created_at
|
447
|
+
t.datetime :reset_password_sent_at
|
448
|
+
t.timestamps null: false, precision: 6
|
449
|
+
end
|
450
|
+
|
451
|
+
create_table :spree_variants do |t|
|
452
|
+
t.string :sku, default: '', null: false
|
453
|
+
t.decimal :price, precision: 8, scale: 2, null: false
|
454
|
+
t.decimal :weight, precision: 8, scale: 2
|
455
|
+
t.decimal :height, precision: 8, scale: 2
|
456
|
+
t.decimal :width, precision: 8, scale: 2
|
457
|
+
t.decimal :depth, precision: 8, scale: 2
|
458
|
+
t.datetime :deleted_at
|
459
|
+
t.boolean :is_master, default: false
|
460
|
+
t.references :product
|
461
|
+
t.integer :count_on_hand, default: 0, null: false
|
462
|
+
t.decimal :cost_price, precision: 8, scale: 2
|
463
|
+
t.integer :position
|
464
|
+
end
|
465
|
+
|
466
|
+
add_index :spree_variants, [:product_id], name: 'index_spree_variants_on_product_id'
|
467
|
+
|
468
|
+
create_table :spree_zone_members do |t|
|
469
|
+
t.references :zoneable, polymorphic: true
|
470
|
+
t.references :zone
|
471
|
+
t.timestamps null: false, precision: 6
|
472
|
+
end
|
473
|
+
|
474
|
+
create_table :spree_zones do |t|
|
475
|
+
t.string :name
|
476
|
+
t.string :description
|
477
|
+
t.boolean :default_tax, default: false
|
478
|
+
t.integer :zone_members_count, default: 0
|
479
|
+
t.timestamps null: false, precision: 6
|
480
|
+
end
|
481
|
+
end
|
482
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
# This migration comes from spree (originally 20120831092359)
|
2
|
+
class SpreePromoOneTwo < ActiveRecord::Migration[4.2]
|
3
|
+
def up
|
4
|
+
# This migration is just a compressed migration for all previous versions of spree_promo
|
5
|
+
return if data_source_exists?(:spree_products_promotion_rules)
|
6
|
+
|
7
|
+
create_table :spree_products_promotion_rules, id: false, force: true do |t|
|
8
|
+
t.references :product
|
9
|
+
t.references :promotion_rule
|
10
|
+
end
|
11
|
+
|
12
|
+
add_index :spree_products_promotion_rules, [:product_id], name: 'index_products_promotion_rules_on_product_id'
|
13
|
+
add_index :spree_products_promotion_rules, [:promotion_rule_id], name: 'index_products_promotion_rules_on_promotion_rule_id'
|
14
|
+
|
15
|
+
create_table :spree_promotion_action_line_items, force: true do |t|
|
16
|
+
t.references :promotion_action
|
17
|
+
t.references :variant
|
18
|
+
t.integer :quantity, default: 1
|
19
|
+
end
|
20
|
+
|
21
|
+
create_table :spree_promotion_actions, force: true do |t|
|
22
|
+
t.references :activator
|
23
|
+
t.integer :position
|
24
|
+
t.string :type
|
25
|
+
end
|
26
|
+
|
27
|
+
create_table :spree_promotion_rules, force: true do |t|
|
28
|
+
t.references :activator
|
29
|
+
t.references :user
|
30
|
+
t.references :product_group
|
31
|
+
t.string :type
|
32
|
+
t.timestamps null: false, precision: 6
|
33
|
+
end
|
34
|
+
|
35
|
+
add_index :spree_promotion_rules, [:product_group_id], name: 'index_promotion_rules_on_product_group_id'
|
36
|
+
add_index :spree_promotion_rules, [:user_id], name: 'index_promotion_rules_on_user_id'
|
37
|
+
|
38
|
+
create_table :spree_promotion_rules_users, id: false, force: true do |t|
|
39
|
+
t.references :user
|
40
|
+
t.references :promotion_rule
|
41
|
+
end
|
42
|
+
|
43
|
+
add_index :spree_promotion_rules_users, [:promotion_rule_id], name: 'index_promotion_rules_users_on_promotion_rule_id'
|
44
|
+
add_index :spree_promotion_rules_users, [:user_id], name: 'index_promotion_rules_users_on_user_id'
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# This migration comes from spree (originally 20120929093553)
|
2
|
+
class RemoveUnusedPreferenceColumns < ActiveRecord::Migration[4.2]
|
3
|
+
def change
|
4
|
+
# Columns have already been removed if the application was upgraded from an older version, but must be removed from new apps.
|
5
|
+
remove_column :spree_preferences, :name if ApplicationRecord.connection.column_exists?(:spree_preferences, :name)
|
6
|
+
remove_column :spree_preferences, :owner_id if ApplicationRecord.connection.column_exists?(:spree_preferences, :owner_id)
|
7
|
+
remove_column :spree_preferences, :owner_type if ApplicationRecord.connection.column_exists?(:spree_preferences, :owner_type)
|
8
|
+
end
|
9
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# This migration comes from spree (originally 20121012071449)
|
2
|
+
class AddOnDemandToProductAndVariant < ActiveRecord::Migration[4.2]
|
3
|
+
def change
|
4
|
+
add_column :spree_products, :on_demand, :boolean, default: false
|
5
|
+
add_column :spree_variants, :on_demand, :boolean, default: false
|
6
|
+
end
|
7
|
+
end
|
data/spec/dummy/db/migrate/20190729091659_remove_not_null_constraint_from_products_on_hand.spree.rb
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
# This migration comes from spree (originally 20121017010007)
|
2
|
+
class RemoveNotNullConstraintFromProductsOnHand < ActiveRecord::Migration[4.2]
|
3
|
+
def up
|
4
|
+
change_column :spree_products, :count_on_hand, :integer, null: true
|
5
|
+
change_column :spree_variants, :count_on_hand, :integer, null: true
|
6
|
+
end
|
7
|
+
|
8
|
+
def down
|
9
|
+
change_column :spree_products, :count_on_hand, :integer, null: false
|
10
|
+
change_column :spree_variants, :count_on_hand, :integer, null: false
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# This migration comes from spree (originally 20121031162139)
|
2
|
+
class SplitPricesFromVariants < ActiveRecord::Migration[4.2]
|
3
|
+
def up
|
4
|
+
create_table :spree_prices do |t|
|
5
|
+
t.integer :variant_id, null: false
|
6
|
+
t.decimal :amount, precision: 8, scale: 2, null: false
|
7
|
+
t.string :currency
|
8
|
+
end
|
9
|
+
|
10
|
+
Spree::Variant.all.each do |variant|
|
11
|
+
Spree::Price.create!(
|
12
|
+
variant_id: variant.id,
|
13
|
+
amount: variant[:price],
|
14
|
+
currency: Spree::Config[:currency]
|
15
|
+
)
|
16
|
+
end
|
17
|
+
|
18
|
+
remove_column :spree_variants, :price
|
19
|
+
end
|
20
|
+
|
21
|
+
def down
|
22
|
+
prices = ApplicationRecord.connection.execute("select variant_id, amount from spree_prices")
|
23
|
+
add_column :spree_variants, :price, :decimal, after: :sku, scale: 2, precision: 8
|
24
|
+
|
25
|
+
prices.each do |price|
|
26
|
+
ApplicationRecord.connection.execute("update spree_variants set price = #{price['amount']} where id = #{price['variant_id']}")
|
27
|
+
end
|
28
|
+
|
29
|
+
change_column :spree_variants, :price, :decimal, after: :sku, scale: 2, precision: 8, null: false
|
30
|
+
drop_table :spree_prices
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# This migration comes from spree (originally 20121107003422)
|
2
|
+
class RemoveNotNullFromSpreePricesAmount < ActiveRecord::Migration[4.2]
|
3
|
+
def up
|
4
|
+
change_column :spree_prices, :amount, :decimal, precision: 8, scale: 2, null: true
|
5
|
+
end
|
6
|
+
|
7
|
+
def down
|
8
|
+
change_column :spree_prices, :amount, :decimal, precision: 8, scale: 2, null: false
|
9
|
+
end
|
10
|
+
end
|