spree_core 4.3.3 → 4.4.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/finders/spree/option_values/find_available.rb +9 -1
- data/app/finders/spree/products/find.rb +1 -1
- data/app/helpers/spree/base_helper.rb +1 -5
- data/app/helpers/spree/currency_helper.rb +1 -1
- data/app/helpers/spree/products_helper.rb +1 -15
- data/app/jobs/spree/base_job.rb +4 -0
- data/app/jobs/spree/stock_locations/stock_items/create_job.rb +13 -0
- data/app/models/concerns/spree/default_price.rb +1 -1
- data/app/models/concerns/spree/display_money.rb +3 -1
- data/app/models/concerns/spree/memoized_data.rb +1 -1
- data/app/models/concerns/spree/metadata.rb +10 -0
- data/app/models/concerns/spree/multi_store_resource.rb +1 -1
- data/app/models/concerns/spree/named_type.rb +1 -1
- data/app/models/concerns/spree/number_identifier.rb +18 -0
- data/app/models/concerns/spree/product_scopes.rb +52 -22
- data/app/models/concerns/spree/unique_name.rb +10 -0
- data/app/models/concerns/spree/user_methods.rb +9 -0
- data/app/models/concerns/spree/user_reporting.rb +1 -1
- data/app/models/concerns/spree/user_roles.rb +20 -2
- data/app/models/spree/ability.rb +11 -3
- data/app/models/spree/address.rb +4 -2
- data/app/models/spree/adjustment.rb +1 -0
- data/app/models/spree/app_configuration.rb +21 -24
- data/app/models/spree/asset.rb +1 -0
- data/app/models/spree/base.rb +14 -0
- data/app/models/spree/calculator/flat_rate.rb +1 -1
- data/app/models/spree/calculator/flexi_rate.rb +1 -1
- data/app/models/spree/calculator/price_sack.rb +1 -1
- data/app/models/spree/calculator/shipping/digital_delivery.rb +22 -0
- data/app/models/spree/calculator/shipping/flat_rate.rb +1 -1
- data/app/models/spree/calculator/shipping/flexi_rate.rb +1 -1
- data/app/models/spree/calculator/shipping/per_item.rb +1 -1
- data/app/models/spree/calculator/shipping/price_sack.rb +1 -1
- data/app/models/spree/calculator.rb +1 -1
- data/app/models/spree/cms_page.rb +3 -3
- data/app/models/spree/cms_section.rb +1 -1
- data/app/models/spree/country.rb +4 -2
- data/app/models/spree/credit_card.rb +10 -0
- data/app/models/spree/customer_return.rb +3 -1
- data/app/models/spree/digital.rb +15 -0
- data/app/models/spree/digital_link.rb +50 -0
- data/app/models/spree/gateway/bogus.rb +4 -0
- data/app/models/spree/image/configuration/active_storage.rb +2 -19
- data/app/models/spree/legacy_user.rb +1 -0
- data/app/models/spree/line_item.rb +11 -3
- data/app/models/spree/option_type.rb +4 -4
- data/app/models/spree/option_value.rb +2 -0
- data/app/models/spree/order/checkout.rb +7 -1
- data/app/models/spree/order/digital.rb +33 -0
- data/app/models/spree/order/store_credit.rb +0 -8
- data/app/models/spree/order.rb +34 -22
- data/app/models/spree/order_inventory.rb +1 -1
- data/app/models/spree/order_promotion.rb +1 -1
- data/app/models/spree/payment/processing.rb +1 -0
- data/app/models/spree/payment.rb +25 -4
- data/app/models/spree/payment_method.rb +3 -1
- data/app/models/spree/preference.rb +2 -1
- data/app/models/spree/preferences/configuration.rb +2 -2
- data/app/models/spree/preferences/store.rb +1 -1
- data/app/models/spree/price.rb +1 -1
- data/app/models/spree/product.rb +18 -17
- data/app/models/spree/promotion/rules/product.rb +1 -1
- data/app/models/spree/promotion.rb +3 -1
- data/app/models/spree/promotion_action.rb +1 -1
- data/app/models/spree/property.rb +1 -0
- data/app/models/spree/prototype.rb +2 -0
- data/app/models/spree/refund.rb +2 -0
- data/app/models/spree/reimbursement.rb +1 -1
- data/app/models/spree/return_authorization.rb +3 -2
- data/app/models/spree/return_item.rb +1 -1
- data/app/models/spree/role.rb +2 -2
- data/app/models/spree/shipment.rb +4 -30
- data/app/models/spree/shipping_category.rb +1 -1
- data/app/models/spree/shipping_method.rb +2 -0
- data/app/models/spree/state.rb +1 -1
- data/app/models/spree/stock/quantifier.rb +1 -1
- data/app/models/spree/stock/splitter/digital.rb +35 -0
- data/app/models/spree/stock_item.rb +2 -2
- data/app/models/spree/stock_location.rb +6 -28
- data/app/models/spree/stock_movement.rb +3 -0
- data/app/models/spree/stock_transfer.rb +3 -6
- data/app/models/spree/store.rb +41 -8
- data/app/models/spree/store_credit.rb +5 -1
- data/app/models/spree/store_credit_category.rb +2 -0
- data/app/models/spree/store_credit_event.rb +2 -7
- data/app/models/spree/store_credit_type.rb +2 -0
- data/app/models/spree/tax_category.rb +3 -1
- data/app/models/spree/tax_rate.rb +3 -1
- data/app/models/spree/taxon.rb +11 -0
- data/app/models/spree/taxon_image/configuration/active_storage.rb +2 -12
- data/app/models/spree/taxonomy.rb +7 -0
- data/app/models/spree/variant.rb +20 -10
- data/app/models/spree/wished_item.rb +29 -0
- data/app/models/spree/wishlist.rb +35 -0
- data/app/models/spree/zone.rb +8 -6
- data/app/services/spree/account/addresses/create.rb +1 -17
- data/app/services/spree/account/addresses/update.rb +1 -22
- data/app/services/spree/addresses/create.rb +24 -0
- data/app/services/spree/addresses/helper.rb +41 -0
- data/app/services/spree/addresses/update.rb +27 -0
- data/app/services/spree/cart/add_item.rb +4 -2
- data/app/services/spree/cart/create.rb +4 -2
- data/app/services/spree/cart/update.rb +2 -2
- data/app/services/spree/checkout/add_store_credit.rb +4 -1
- data/app/services/spree/checkout/select_shipping_method.rb +49 -0
- data/app/services/spree/checkout/update.rb +3 -10
- data/app/services/spree/line_items/create.rb +20 -0
- data/app/services/spree/line_items/destroy.rb +18 -0
- data/app/services/spree/line_items/helper.rb +11 -0
- data/app/services/spree/line_items/update.rb +17 -0
- data/app/services/spree/orders/approve.rb +18 -0
- data/app/services/spree/orders/cancel.rb +18 -0
- data/app/services/spree/payments/create.rb +66 -0
- data/app/services/spree/seeds/all.rb +26 -0
- data/app/services/spree/seeds/countries.rb +50 -0
- data/app/services/spree/seeds/default_reimbursement_types.rb +12 -0
- data/app/services/spree/seeds/roles.rb +11 -0
- data/app/services/spree/seeds/shipping_categories.rb +12 -0
- data/app/services/spree/seeds/states.rb +72 -0
- data/app/services/spree/seeds/stock_locations.rb +18 -0
- data/app/services/spree/seeds/store_credit_categories.rb +12 -0
- data/app/services/spree/seeds/stores.rb +31 -0
- data/app/services/spree/seeds/zones.rb +39 -0
- data/app/services/spree/shipments/add_item.rb +32 -0
- data/app/services/spree/shipments/change_state.rb +14 -0
- data/app/services/spree/shipments/create.rb +48 -0
- data/app/services/spree/shipments/helper.rb +23 -0
- data/app/services/spree/shipments/remove_item.rb +55 -0
- data/app/services/spree/shipments/update.rb +40 -0
- data/app/services/spree/stock_locations/stock_items/create.rb +31 -0
- data/app/services/spree/wallet/create_payment_source.rb +26 -0
- data/app/validators/spree/url_validator.rb +23 -0
- data/brakeman.ignore +20 -0
- data/config/initializers/active_storage.rb +0 -6
- data/config/locales/en.yml +14 -168
- data/db/migrate/20210914000000_spree_four_three.rb +1205 -0
- data/db/migrate/20210915064321_add_metadata_to_spree_orders.rb +13 -0
- data/db/migrate/20210915064322_add_metadata_to_spree_products.rb +13 -0
- data/db/migrate/20210915064323_add_metadata_to_spree_variants.rb +13 -0
- data/db/migrate/20210915064324_add_metadata_to_spree_line_items.rb +13 -0
- data/db/migrate/20210915064325_add_metadata_to_spree_shipments.rb +13 -0
- data/db/migrate/20210915064326_add_metadata_to_spree_payments.rb +13 -0
- data/db/migrate/20210915064327_add_metadata_to_spree_taxons_and_taxonomies.rb +18 -0
- data/db/migrate/20210915064328_add_metadata_to_spree_stock_transfers.rb +13 -0
- data/db/migrate/20210915064329_add_metadata_to_spree_multiple_tables.rb +30 -0
- data/db/migrate/20210920090344_add_deleted_at_to_spree_stores.rb +8 -0
- data/db/migrate/20210921070812_rename_column_access_hash_to_token.rb +8 -0
- data/db/migrate/20210921070813_create_spree_wishlists.rb +18 -0
- data/db/migrate/20210921070814_create_spree_wished_products.rb +16 -0
- data/db/migrate/20210921070815_rename_spree_wished_products_to_spree_wished_items.rb +5 -0
- data/db/migrate/20210921090344_add_unique_stock_item_stock_location_variant_deleted_at_index.rb +5 -0
- data/db/migrate/20210929090344_create_stock_item_stock_location_id_variant_id_coalesce_deleted_at_unique_index.rb +32 -0
- data/db/migrate/20210929091444_create_spree_digital_links.rb +13 -0
- data/db/migrate/20210929093238_create_spree_digitals.rb +9 -0
- data/db/migrate/20210930143043_rename_secret_to_token_on_spree_digital_links.rb +5 -0
- data/db/migrate/20210930155649_add_settings_to_spree_stores.rb +11 -0
- data/db/seeds.rb +1 -5
- data/lib/generators/spree/dummy/dummy_generator.rb +1 -1
- data/lib/generators/spree/dummy/templates/rails/database.yml +20 -18
- data/{app/models/spree → lib/spree/core}/app_dependencies.rb +32 -4
- data/lib/spree/core/controller_helpers/auth.rb +4 -4
- data/lib/spree/core/controller_helpers/common.rb +15 -1
- data/lib/spree/core/controller_helpers/currency.rb +1 -1
- data/lib/spree/core/engine.rb +10 -4
- data/lib/spree/core/importer/product.rb +1 -1
- data/lib/spree/core/number_generator.rb +0 -2
- data/lib/spree/core/version.rb +1 -1
- data/lib/spree/core.rb +21 -13
- data/lib/spree/money.rb +2 -2
- data/lib/spree/permitted_attributes.rb +31 -13
- data/lib/spree/testing_support/authorization_helpers.rb +3 -1
- data/lib/spree/testing_support/capybara_config.rb +14 -19
- data/lib/spree/testing_support/capybara_ext.rb +1 -6
- data/lib/spree/testing_support/common_rake.rb +22 -4
- data/lib/spree/testing_support/factories/asset_factory.rb +15 -0
- data/lib/spree/testing_support/factories/cms_section_factory.rb +2 -2
- data/lib/spree/testing_support/factories/digital_factory.rb +10 -0
- data/lib/spree/testing_support/factories/digital_link_factory.rb +6 -0
- data/lib/spree/testing_support/factories/log_entry_factory.rb +6 -0
- data/lib/spree/testing_support/factories/order_factory.rb +4 -1
- data/lib/spree/testing_support/factories/payment_capture_event_factory.rb +6 -0
- data/lib/spree/testing_support/factories/payment_factory.rb +3 -3
- data/lib/spree/testing_support/factories/promotion_action_factory.rb +5 -0
- data/lib/spree/testing_support/factories/reimbursement_credit_factory.rb +7 -0
- data/lib/spree/testing_support/factories/shipping_rate_factory.rb +7 -0
- data/lib/spree/testing_support/factories/state_change_factory.rb +8 -0
- data/lib/spree/testing_support/factories/stock_item_factory.rb +7 -0
- data/lib/spree/testing_support/factories/stock_location_factory.rb +1 -1
- data/lib/spree/testing_support/factories/stock_transfer_factory.rb +9 -0
- data/lib/spree/testing_support/factories/store_credit_factory.rb +1 -1
- data/lib/spree/testing_support/factories/store_credit_type_factory.rb +5 -0
- data/lib/spree/testing_support/factories/tax_rate_factory.rb +1 -0
- data/lib/spree/testing_support/factories/user_factory.rb +2 -0
- data/lib/spree/testing_support/factories/wished_variant_factory.rb +6 -0
- data/lib/spree/testing_support/factories/wishlist_factory.rb +18 -0
- data/lib/spree/testing_support/jobs.rb +9 -0
- data/lib/tasks/core.rake +4 -4
- data/spree_core.gemspec +2 -1
- metadata +104 -324
- data/app/models/spree/order_contents.rb +0 -31
- data/app/services/spree/account/addresses/helper.rb +0 -43
- data/app/services/spree/build_localized_redirect_url.rb +0 -101
- data/db/default/spree/countries.rb +0 -24
- data/db/default/spree/default_reimbursement_type.rb +0 -1
- data/db/default/spree/roles.rb +0 -2
- data/db/default/spree/states.rb +0 -49
- data/db/default/spree/store_credit_categories.rb +0 -1
- data/db/default/spree/stores.rb +0 -21
- data/db/default/spree/zones.rb +0 -29
- data/db/migrate/20120831092320_spree_one_two.rb +0 -481
- data/db/migrate/20120831092359_spree_promo_one_two.rb +0 -45
- data/db/migrate/20120905145253_add_tax_rate_label.rb +0 -5
- data/db/migrate/20120905151823_add_toggle_tax_rate_display.rb +0 -5
- data/db/migrate/20120929093553_remove_unused_preference_columns.rb +0 -8
- data/db/migrate/20121009142519_add_lock_version_to_variant.rb +0 -5
- data/db/migrate/20121010142909_add_states_required_to_countries.rb +0 -5
- data/db/migrate/20121012071449_add_on_demand_to_product_and_variant.rb +0 -6
- data/db/migrate/20121017010007_remove_not_null_constraint_from_products_on_hand.rb +0 -11
- data/db/migrate/20121031162139_split_prices_from_variants.rb +0 -31
- data/db/migrate/20121107003422_remove_not_null_from_spree_prices_amount.rb +0 -9
- data/db/migrate/20121107184631_add_currency_to_line_items.rb +0 -5
- data/db/migrate/20121107194006_add_currency_to_orders.rb +0 -5
- data/db/migrate/20121109173623_add_cost_currency_to_variants.rb +0 -5
- data/db/migrate/20121111231553_remove_display_on_from_payment_methods.rb +0 -5
- data/db/migrate/20121124203911_add_position_to_taxonomies.rb +0 -5
- data/db/migrate/20121126040517_add_last_ip_to_spree_orders.rb +0 -5
- data/db/migrate/20121213162028_add_state_to_spree_adjustments.rb +0 -6
- data/db/migrate/20130114053446_add_display_on_to_spree_payment_methods.rb +0 -9
- data/db/migrate/20130120201805_add_position_to_product_properties.spree.rb +0 -6
- data/db/migrate/20130203232234_add_identifier_to_spree_payments.rb +0 -5
- data/db/migrate/20130207155350_add_order_id_index_to_payments.rb +0 -9
- data/db/migrate/20130208032954_add_primary_to_spree_products_taxons.rb +0 -5
- data/db/migrate/20130211190146_create_spree_stock_items.rb +0 -14
- data/db/migrate/20130211191120_create_spree_stock_locations.rb +0 -11
- data/db/migrate/20130213191427_create_default_stock.rb +0 -33
- data/db/migrate/20130222032153_add_order_id_index_to_shipments.rb +0 -5
- data/db/migrate/20130226032817_change_meta_description_on_spree_products_to_text.rb +0 -5
- data/db/migrate/20130226191231_add_stock_location_id_to_spree_shipments.rb +0 -5
- data/db/migrate/20130227143905_add_pending_to_inventory_unit.rb +0 -6
- data/db/migrate/20130228164411_remove_on_demand_from_product_and_variant.rb +0 -6
- data/db/migrate/20130228210442_create_shipping_method_zone.rb +0 -21
- data/db/migrate/20130301162745_remove_shipping_category_id_from_shipping_method.rb +0 -5
- data/db/migrate/20130301162924_create_shipping_method_categories.rb +0 -13
- data/db/migrate/20130301205200_add_tracking_url_to_spree_shipping_methods.rb +0 -5
- data/db/migrate/20130304162240_create_spree_shipping_rates.rb +0 -24
- data/db/migrate/20130304192936_remove_category_match_attributes_from_shipping_method.rb +0 -7
- data/db/migrate/20130305143310_create_stock_movements.rb +0 -12
- data/db/migrate/20130306181701_add_address_fields_to_stock_location.rb +0 -22
- data/db/migrate/20130306191917_add_active_field_to_stock_locations.rb +0 -5
- data/db/migrate/20130306195650_add_backorderable_to_stock_item.rb +0 -5
- data/db/migrate/20130307161754_add_default_quantity_to_stock_movement.rb +0 -5
- data/db/migrate/20130318151756_add_source_and_destination_to_stock_movements.rb +0 -8
- data/db/migrate/20130319062004_change_orders_total_precision.rb +0 -8
- data/db/migrate/20130319063911_change_spree_payments_amount_precision.rb +0 -7
- data/db/migrate/20130319064308_change_spree_return_authorization_amount_precision.rb +0 -7
- data/db/migrate/20130319082943_change_adjustments_amount_precision.rb +0 -7
- data/db/migrate/20130319183250_add_originator_to_stock_movement.rb +0 -7
- data/db/migrate/20130319190507_drop_source_and_destination_from_stock_movement.rb +0 -15
- data/db/migrate/20130325163316_migrate_inventory_unit_sold_to_on_hand.rb +0 -9
- data/db/migrate/20130326175857_add_stock_location_to_rma.rb +0 -5
- data/db/migrate/20130328130308_update_shipment_state_for_canceled_orders.rb +0 -15
- data/db/migrate/20130328195253_add_seo_metas_to_taxons.rb +0 -9
- data/db/migrate/20130329134939_remove_stock_item_and_variant_lock.rb +0 -14
- data/db/migrate/20130413230529_add_name_to_spree_credit_cards.rb +0 -5
- data/db/migrate/20130414000512_update_name_fields_on_spree_credit_cards.rb +0 -13
- data/db/migrate/20130417120034_add_index_to_source_columns_on_adjustments.rb +0 -5
- data/db/migrate/20130417120035_update_adjustment_states.rb +0 -16
- data/db/migrate/20130417123427_add_shipping_rates_to_shipments.rb +0 -15
- data/db/migrate/20130418125341_create_spree_stock_transfers.rb +0 -14
- data/db/migrate/20130423110707_drop_products_count_on_hand.rb +0 -5
- data/db/migrate/20130423223847_set_default_shipping_rate_cost.rb +0 -5
- data/db/migrate/20130509115210_add_number_to_stock_transfer.rb +0 -23
- data/db/migrate/20130514151929_add_sku_index_to_spree_variants.rb +0 -5
- data/db/migrate/20130515180736_add_backorderable_default_to_spree_stock_location.rb +0 -5
- data/db/migrate/20130516151222_add_propage_all_variants_to_spree_stock_location.rb +0 -5
- data/db/migrate/20130611054351_rename_shipping_methods_zones_to_spree_shipping_methods_zones.rb +0 -5
- data/db/migrate/20130611185927_add_user_id_index_to_spree_orders.rb +0 -5
- data/db/migrate/20130618041418_add_updated_at_to_spree_countries.rb +0 -9
- data/db/migrate/20130619012236_add_updated_at_to_spree_states.rb +0 -9
- data/db/migrate/20130626232741_add_cvv_result_code_and_cvv_result_message_to_spree_payments.rb +0 -6
- data/db/migrate/20130628021056_add_unique_index_to_permalink_on_spree_products.rb +0 -5
- data/db/migrate/20130628022817_add_unique_index_to_orders_shipments_and_stock_transfers.rb +0 -7
- data/db/migrate/20130708052307_add_deleted_at_to_spree_tax_rates.rb +0 -5
- data/db/migrate/20130711200933_remove_lock_version_from_inventory_units.rb +0 -6
- data/db/migrate/20130718042445_add_cost_price_to_line_item.rb +0 -5
- data/db/migrate/20130718233855_set_backorderable_to_default_to_false.rb +0 -6
- data/db/migrate/20130725031716_add_created_by_id_to_spree_orders.rb +0 -5
- data/db/migrate/20130729214043_index_completed_at_on_spree_orders.rb +0 -5
- data/db/migrate/20130802014537_add_tax_category_id_to_spree_line_items.rb +0 -5
- data/db/migrate/20130802022321_migrate_tax_categories_to_line_items.rb +0 -10
- data/db/migrate/20130806022521_drop_spree_mail_methods.rb +0 -12
- data/db/migrate/20130806145853_set_default_stock_location_on_shipments.rb +0 -8
- data/db/migrate/20130807024301_upgrade_adjustments.rb +0 -46
- data/db/migrate/20130807024302_rename_adjustment_fields.rb +0 -20
- data/db/migrate/20130809164245_add_admin_name_column_to_spree_shipping_methods.rb +0 -5
- data/db/migrate/20130809164330_add_admin_name_column_to_spree_stock_locations.rb +0 -5
- data/db/migrate/20130813004002_add_shipment_total_to_spree_orders.rb +0 -5
- data/db/migrate/20130813140619_expand_order_number_size.rb +0 -9
- data/db/migrate/20130813232134_rename_activators_to_promotions.rb +0 -5
- data/db/migrate/20130815000406_add_adjustment_total_to_line_items.rb +0 -5
- data/db/migrate/20130815024413_add_adjustment_total_to_shipments.rb +0 -5
- data/db/migrate/20130826062534_add_depth_to_spree_taxons.rb +0 -16
- data/db/migrate/20130828234942_add_tax_total_to_line_items_shipments_and_orders.rb +0 -8
- data/db/migrate/20130830001033_add_shipping_category_to_shipping_methods_and_products.rb +0 -15
- data/db/migrate/20130830001159_migrate_old_shipping_calculators.rb +0 -19
- data/db/migrate/20130903183026_add_code_to_spree_promotion_rules.rb +0 -5
- data/db/migrate/20130909115621_change_states_required_for_countries.rb +0 -9
- data/db/migrate/20130915032339_add_deleted_at_to_spree_stock_items.rb +0 -5
- data/db/migrate/20130917024658_remove_promotions_event_name_field.rb +0 -5
- data/db/migrate/20130924040529_add_promo_total_to_line_items_and_shipments_and_orders.rb +0 -7
- data/db/migrate/20131001013410_remove_unused_credit_card_fields.rb +0 -16
- data/db/migrate/20131026154747_add_track_inventory_to_variant.rb +0 -5
- data/db/migrate/20131107132123_add_tax_category_to_variants.rb +0 -6
- data/db/migrate/20131113035136_add_channel_to_spree_orders.rb +0 -5
- data/db/migrate/20131118043959_add_included_to_adjustments.rb +0 -5
- data/db/migrate/20131118050234_rename_tax_total_fields.rb +0 -11
- data/db/migrate/20131118183431_add_line_item_id_to_spree_inventory_units.rb +0 -21
- data/db/migrate/20131120234456_add_updated_at_to_variants.rb +0 -5
- data/db/migrate/20131127001002_add_position_to_classifications.rb +0 -5
- data/db/migrate/20131211112807_create_spree_orders_promotions.rb +0 -8
- data/db/migrate/20131211192741_unique_shipping_method_categories.rb +0 -24
- data/db/migrate/20131218054603_add_item_count_to_spree_orders.rb +0 -5
- data/db/migrate/20140106065820_remove_value_type_from_spree_preferences.rb +0 -8
- data/db/migrate/20140106224208_rename_permalink_to_slug_for_products.rb +0 -5
- data/db/migrate/20140120160805_add_index_to_variant_id_and_currency_on_prices.rb +0 -5
- data/db/migrate/20140124023232_rename_activator_id_in_rules_and_actions_to_promotion_id.rb +0 -6
- data/db/migrate/20140129024326_add_deleted_at_to_spree_prices.rb +0 -5
- data/db/migrate/20140203161722_add_approver_id_and_approved_at_to_orders.rb +0 -6
- data/db/migrate/20140204115338_add_confirmation_delivered_to_spree_orders.rb +0 -5
- data/db/migrate/20140204192230_add_auto_capture_to_payment_methods.rb +0 -5
- data/db/migrate/20140205120320_create_spree_payment_capture_events.rb +0 -12
- data/db/migrate/20140205144710_add_uncaptured_amount_to_payments.rb +0 -5
- data/db/migrate/20140205181631_default_variant_weight_to_zero.rb +0 -11
- data/db/migrate/20140207085910_add_tax_category_id_to_shipping_methods.rb +0 -5
- data/db/migrate/20140207093021_add_tax_rate_id_to_shipping_rates.rb +0 -5
- data/db/migrate/20140211040159_add_pre_tax_amount_to_line_items_and_shipments.rb +0 -6
- data/db/migrate/20140213184916_add_more_indexes.rb +0 -13
- data/db/migrate/20140219060952_add_considered_risky_to_orders.rb +0 -5
- data/db/migrate/20140227112348_add_preference_store_to_everything.rb +0 -8
- data/db/migrate/20140307235515_add_user_id_to_spree_credit_cards.rb +0 -13
- data/db/migrate/20140309023735_migrate_old_preferences.rb +0 -27
- data/db/migrate/20140309024355_create_spree_stores.rb +0 -25
- data/db/migrate/20140309033438_create_store_from_preferences.rb +0 -42
- data/db/migrate/20140315053743_add_timestamps_to_spree_assets.rb +0 -6
- data/db/migrate/20140318191500_create_spree_taxons_promotion_rules.rb +0 -8
- data/db/migrate/20140331100557_add_additional_store_fields.rb +0 -8
- data/db/migrate/20140410141842_add_many_missing_indexes.rb +0 -18
- data/db/migrate/20140410150358_correct_some_polymorphic_index_and_add_more_missing.rb +0 -66
- data/db/migrate/20140415041315_add_user_id_created_by_id_index_to_order.rb +0 -5
- data/db/migrate/20140508151342_change_spree_price_amount_precision.rb +0 -8
- data/db/migrate/20140518174634_add_token_to_spree_orders.rb +0 -5
- data/db/migrate/20140530024945_move_order_token_from_tokenized_permission.rb +0 -29
- data/db/migrate/20140601011216_set_shipment_total_for_users_upgrading.rb +0 -10
- data/db/migrate/20140604135309_drop_credit_card_first_name_and_last_name.rb +0 -6
- data/db/migrate/20140609201656_add_deleted_at_to_spree_promotion_actions.rb +0 -6
- data/db/migrate/20140616202624_remove_uncaptured_amount_from_spree_payments.rb +0 -5
- data/db/migrate/20140625214618_create_spree_refunds.rb +0 -12
- data/db/migrate/20140702140656_create_spree_return_authorization_inventory_unit.rb +0 -12
- data/db/migrate/20140707125621_rename_return_authorization_inventory_unit_to_return_items.rb +0 -5
- data/db/migrate/20140709160534_backfill_line_item_pre_tax_amount.rb +0 -10
- data/db/migrate/20140710041921_recreate_spree_return_authorizations.rb +0 -55
- data/db/migrate/20140710181204_add_amount_fields_to_return_items.rb +0 -7
- data/db/migrate/20140710190048_drop_return_authorization_amount.rb +0 -5
- data/db/migrate/20140713140455_create_spree_return_authorization_reasons.rb +0 -28
- data/db/migrate/20140713140527_create_spree_refund_reasons.rb +0 -14
- data/db/migrate/20140713142214_rename_return_authorization_reason.rb +0 -5
- data/db/migrate/20140715182625_create_spree_promotion_categories.rb +0 -11
- data/db/migrate/20140716204111_drop_received_at_on_return_items.rb +0 -9
- data/db/migrate/20140716212330_add_reception_and_acceptance_status_to_return_items.rb +0 -6
- data/db/migrate/20140717155155_create_default_refund_reason.rb +0 -9
- data/db/migrate/20140717185932_add_default_to_spree_stock_locations.rb +0 -7
- data/db/migrate/20140718133010_create_spree_customer_returns.rb +0 -9
- data/db/migrate/20140718133349_add_customer_return_id_to_return_item.rb +0 -6
- data/db/migrate/20140718195325_create_friendly_id_slugs.rb +0 -15
- data/db/migrate/20140723004419_rename_spree_refund_return_authorization_id.rb +0 -5
- data/db/migrate/20140723152808_increase_return_item_pre_tax_amount_precision.rb +0 -13
- data/db/migrate/20140723214541_copy_product_slugs_to_slug_history.rb +0 -15
- data/db/migrate/20140725131539_create_spree_reimbursements.rb +0 -21
- data/db/migrate/20140728225422_add_promotionable_to_spree_products.rb +0 -5
- data/db/migrate/20140729133613_add_exchange_inventory_unit_foreign_keys.rb +0 -7
- data/db/migrate/20140730155938_add_acceptance_status_errors_to_return_item.rb +0 -5
- data/db/migrate/20140731150017_create_spree_reimbursement_types.rb +0 -20
- data/db/migrate/20140804185157_add_default_to_shipment_cost.rb +0 -10
- data/db/migrate/20140805171035_add_default_to_spree_credit_cards.rb +0 -5
- data/db/migrate/20140806144901_add_type_to_reimbursement_type.rb +0 -9
- data/db/migrate/20140808184039_create_spree_reimbursement_credits.rb +0 -10
- data/db/migrate/20140827170513_add_meta_title_to_spree_products.rb +0 -7
- data/db/migrate/20140911173301_add_kind_to_zone.rb +0 -11
- data/db/migrate/20140924164824_add_code_to_spree_tax_categories.rb +0 -5
- data/db/migrate/20140927193717_default_pre_tax_amount_should_be_zero.rb +0 -6
- data/db/migrate/20141002191113_add_code_to_spree_shipping_methods.rb +0 -5
- data/db/migrate/20141007230328_add_cancel_audit_fields_to_spree_orders.rb +0 -6
- data/db/migrate/20141009204607_add_store_id_to_orders.rb +0 -8
- data/db/migrate/20141012083513_create_spree_taxons_prototypes.rb +0 -8
- data/db/migrate/20141021194502_add_state_lock_version_to_order.rb +0 -5
- data/db/migrate/20141023005240_add_counter_cache_from_spree_variants_to_spree_stock_items.rb +0 -8
- data/db/migrate/20141101231208_fix_adjustment_order_presence.rb +0 -13
- data/db/migrate/20141105213646_update_classifications_positions.rb +0 -9
- data/db/migrate/20141120135441_add_guest_token_index_to_spree_orders.rb +0 -5
- data/db/migrate/20141215232040_remove_token_permissions_table.rb +0 -6
- data/db/migrate/20141215235502_remove_extra_products_slug_index.rb +0 -5
- data/db/migrate/20141217215630_update_product_slug_index.rb +0 -6
- data/db/migrate/20141218025915_rename_identifier_to_number_for_payment.rb +0 -5
- data/db/migrate/20150118210639_create_spree_store_credits.rb +0 -24
- data/db/migrate/20150118211500_create_spree_store_credit_categories.rb +0 -8
- data/db/migrate/20150118212051_create_spree_store_credit_events.rb +0 -17
- data/db/migrate/20150118212101_create_spree_store_credit_types.rb +0 -10
- data/db/migrate/20150121022521_remove_environment_from_payment_method.rb +0 -6
- data/db/migrate/20150122145607_add_resellable_to_return_items.rb +0 -5
- data/db/migrate/20150122202432_add_code_to_spree_promotion_categories.rb +0 -5
- data/db/migrate/20150128032538_remove_environment_from_tracker.rb +0 -8
- data/db/migrate/20150128060325_remove_spree_configurations.rb +0 -16
- data/db/migrate/20150216173445_add_index_to_spree_stock_items_variant_id.rb +0 -13
- data/db/migrate/20150309161154_ensure_payments_have_numbers.rb +0 -13
- data/db/migrate/20150314013438_add_missing_indexes_on_spree_tables.rb +0 -67
- data/db/migrate/20150317174308_remove_duplicated_indexes_from_multi_columns.rb +0 -18
- data/db/migrate/20150324104002_remove_user_index_from_spree_state_changes.rb +0 -14
- data/db/migrate/20150515211137_fix_adjustment_order_id.rb +0 -70
- data/db/migrate/20150522071831_add_position_to_spree_payment_methods.rb +0 -5
- data/db/migrate/20150522181728_add_deleted_at_to_friendly_id_slugs.rb +0 -6
- data/db/migrate/20150609093816_increase_scale_on_pre_tax_amounts.rb +0 -16
- data/db/migrate/20150626181949_add_taxable_adjustment_total_to_line_item.rb +0 -19
- data/db/migrate/20150627090949_migrate_payment_methods_display.rb +0 -12
- data/db/migrate/20150707204155_enable_acts_as_paranoid_on_calculators.rb +0 -6
- data/db/migrate/20150714154102_spree_payment_method_store_credits.rb +0 -12
- data/db/migrate/20150726141425_rename_has_and_belongs_to_associations_to_model_names.rb +0 -18
- data/db/migrate/20150727191614_spree_store_credit_types.rb +0 -11
- data/db/migrate/20150819154308_add_discontinued_to_products_and_variants.rb +0 -68
- data/db/migrate/20151220072838_remove_shipping_method_id_from_spree_orders.rb +0 -13
- data/db/migrate/20160207191757_add_id_column_to_earlier_habtm_tables.rb +0 -16
- data/db/migrate/20160219165458_add_indexes.rb +0 -14
- data/db/migrate/20160509064646_remove_counter_cache_from_spree_variants_to_spree_stock_items.rb +0 -10
- data/db/migrate/20160608090604_add_zipcode_required_to_spree_countries.rb +0 -7
- data/db/migrate/20161014145148_add_created_at_to_variant.rb +0 -8
- data/db/migrate/20161014152814_add_null_false_to_spree_variants_timestamps.rb +0 -6
- data/db/migrate/20161125065505_add_quantity_to_inventory_units.rb +0 -5
- data/db/migrate/20170119122701_add_original_return_item_id_to_spree_inventory_units.rb +0 -29
- data/db/migrate/20170315152755_add_unique_index_on_number_to_spree_orders.rb +0 -16
- data/db/migrate/20170316154338_add_unique_index_on_number_to_spree_stock_transfer.rb +0 -16
- data/db/migrate/20170316205511_add_unique_index_on_number_to_spree_shipment.rb +0 -16
- data/db/migrate/20170320134043_add_unique_index_on_number_to_spree_payments.rb +0 -17
- data/db/migrate/20170320142750_add_unique_index_on_number_to_spree_return_authorizations.rb +0 -16
- data/db/migrate/20170320145040_add_unique_index_on_number_to_spree_customer_returns.rb +0 -16
- data/db/migrate/20170320145518_add_unique_index_on_number_to_spree_reimbursements.rb +0 -16
- data/db/migrate/20170323151450_add_missing_unique_indexes_for_unique_attributes.rb +0 -37
- data/db/migrate/20170329110859_add_index_on_stock_location_to_spree_customer_returns.rb +0 -5
- data/db/migrate/20170329113917_add_index_on_prototype_to_spree_option_type_prototype.rb +0 -19
- data/db/migrate/20170330082155_add_indexes_to_spree_option_value_variant.rb +0 -19
- data/db/migrate/20170330132215_add_index_on_promotion_id_to_order_promotions.rb +0 -5
- data/db/migrate/20170331101758_add_indexes_for_property_prototype.rb +0 -20
- data/db/migrate/20170331103334_add_index_for_prototype_id_to_prototype_taxons.rb +0 -5
- data/db/migrate/20170331110454_add_indexes_to_refunds.rb +0 -6
- data/db/migrate/20170331111757_add_indexes_to_reimbursement_credits.rb +0 -6
- data/db/migrate/20170331115246_add_indexes_to_return_authorizations.rb +0 -6
- data/db/migrate/20170331120125_add_indexes_to_return_items.rb +0 -11
- data/db/migrate/20170331121725_add_index_to_role_users.rb +0 -18
- data/db/migrate/20170331123625_add_index_to_shipping_method_categories.rb +0 -5
- data/db/migrate/20170331123832_add_index_to_shipping_method_zones.rb +0 -20
- data/db/migrate/20170331124251_add_index_to_spree_shipping_rates.rb +0 -6
- data/db/migrate/20170331124513_add_index_to_spree_stock_items.rb +0 -5
- data/db/migrate/20170331124924_add_index_to_spree_stock_movement.rb +0 -5
- data/db/migrate/20170413211707_change_indexes_on_friendly_id_slugs.rb +0 -10
- data/db/migrate/20170722102643_add_analytics_kind_to_spree_trackers.rb +0 -5
- data/db/migrate/20170727103056_rename_tracker_kind_field.rb +0 -5
- data/db/migrate/20171004223836_remove_icon_from_taxons.rb +0 -8
- data/db/migrate/20180222133746_add_unique_index_on_spree_promotions_code.rb +0 -6
- data/db/migrate/20180613080857_rename_guest_token_to_token_in_orders.rb +0 -5
- data/db/migrate/20180915160001_add_timestamps_to_spree_prices.rb +0 -12
- data/db/migrate/20181024100754_add_deleted_at_to_spree_credit_cards.rb +0 -6
- data/db/migrate/20190305121659_add_iso_and_iso3_validation_on_presence_and_uniqueness.rb +0 -18
- data/db/migrate/20190523092729_add_user_id_and_deleted_at_to_spree_addresses.rb +0 -12
- data/db/migrate/20191005121504_add_store_id_to_payment_methods.rb +0 -7
- data/db/migrate/20191016134113_add_deafult_value_for_store_default_currency.rb +0 -5
- data/db/migrate/20191017121054_add_supported_currencies_to_store.rb +0 -11
- data/db/migrate/20200102141311_add_social_to_spree_stores.rb +0 -10
- data/db/migrate/20200212144523_add_hide_from_nav_to_taxons.rb +0 -5
- data/db/migrate/20200308210757_add_default_locale_to_spree_store.rb +0 -7
- data/db/migrate/20200310145140_add_customer_support_email_to_spree_store.rb +0 -7
- data/db/migrate/20200421095017_add_compare_at_amount_to_spree_prices.rb +0 -7
- data/db/migrate/20200423123001_add_default_country_id_to_spree_store.rb +0 -9
- data/db/migrate/20200430072209_add_footer_fields_to_spree_stores.rb +0 -8
- data/db/migrate/20200513154939_add_show_property_to_spree_product_properties.rb +0 -5
- data/db/migrate/20200607161221_add_store_owner_order_notification_delivered_to_spree_orders.rb +0 -7
- data/db/migrate/20200607161222_add_new_order_notifications_email_to_spree_stores.rb +0 -7
- data/db/migrate/20200610113542_add_label_to_spree_addresses.rb +0 -5
- data/db/migrate/20200826075557_add_unique_index_on_taxon_id_and_product_id_to_spree_products_taxons.rb +0 -5
- data/db/migrate/20201006110150_add_checkout_zone_field_to_store.rb +0 -12
- data/db/migrate/20201012091259_add_filterable_column_to_spree_option_types.rb +0 -10
- data/db/migrate/20201013084504_add_seo_robots_to_spree_stores.rb +0 -5
- data/db/migrate/20201023152810_add_filterable_to_spree_properties.rb +0 -8
- data/db/migrate/20201127084048_add_default_country_kind_to_spree_zones.rb +0 -5
- data/db/migrate/20210112193440_remove_contact_email_from_spree_stores.rb +0 -5
- data/db/migrate/20210114182625_create_spree_payment_methods_stores.rb +0 -10
- data/db/migrate/20210114220232_migrate_data_payment_methods_stores.rb +0 -15
- data/db/migrate/20210117112551_remove_store_id_from_spree_payment_methods.rb +0 -5
- data/db/migrate/20210120142527_ensure_default_locale_in_spree_stores.rb +0 -5
- data/db/migrate/20210205211040_add_supported_locales_to_spree_stores.rb +0 -11
- data/db/migrate/20210215202602_migrate_spree_i18n_globalize_config.rb +0 -22
- data/db/migrate/20210407200948_create_spree_menus.rb +0 -16
- data/db/migrate/20210408092939_create_spree_menu_items.rb +0 -31
- data/db/migrate/20210504163720_add_filter_param_to_spree_product_properties.rb +0 -8
- data/db/migrate/20210505114659_add_filter_param_to_spree_properties.rb +0 -8
- data/db/migrate/20210512191732_create_spree_cms_pages.rb +0 -24
- data/db/migrate/20210514204251_create_spree_cms_sections.rb +0 -22
- data/db/migrate/20210527094055_create_spree_products_stores.rb +0 -36
- data/db/migrate/20210608045519_ensure_store_default_country_is_set.rb +0 -5
- data/db/migrate/20210702112334_add_missing_timestamp_columns.rb +0 -46
- data/db/migrate/20210713131614_add_unique_index_on_property_id_and_product_id_to_product_properties.rb +0 -29
- data/db/migrate/20210715091956_add_store_id_to_spree_store_credits.rb +0 -10
- data/db/migrate/20210716093151_add_store_id_to_spree_taxonomies.rb +0 -11
- data/db/migrate/20210716104141_add_index_on_name_parent_id_and_taxonomy_id_on_spree_taxons.rb +0 -31
- data/db/migrate/20210721120857_add_index_on_permalink_parent_id_and_taxonomy_id_on_spree_taxons.rb +0 -31
- data/db/migrate/20210721125657_create_spree_promotions_stores.rb +0 -29
- data/db/migrate/20210722090705_add_store_id_to_spree_customer_returns.rb +0 -11
- data/db/migrate/20210726065456_change_integer_id_columns_into_bigint.rb +0 -305
- data/db/migrate/20210730154425_fix_promotion_code_and_path_unique_indexes.rb +0 -9
- /data/lib/spree/{dependencies_helper.rb → core/dependencies_helper.rb} +0 -0
@@ -0,0 +1,1205 @@
|
|
1
|
+
class SpreeFourThree < ActiveRecord::Migration[5.2]
|
2
|
+
def up
|
3
|
+
# This migration is just a compressed version of all the previous
|
4
|
+
# migrations for spree_core. Do not run it if one of the core tables
|
5
|
+
# already exists. Assume the best.
|
6
|
+
return if data_source_exists?(:spree_addresses)
|
7
|
+
|
8
|
+
create_table "friendly_id_slugs", force: :cascade do |t|
|
9
|
+
t.string "slug", null: false
|
10
|
+
t.bigint "sluggable_id", null: false
|
11
|
+
t.string "sluggable_type", limit: 50
|
12
|
+
t.string "scope"
|
13
|
+
t.datetime "created_at"
|
14
|
+
t.datetime "deleted_at"
|
15
|
+
t.index ["deleted_at"], name: "index_friendly_id_slugs_on_deleted_at"
|
16
|
+
t.index ["slug", "sluggable_type", "scope"], name: "index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope", unique: true
|
17
|
+
t.index ["slug", "sluggable_type"], name: "index_friendly_id_slugs_on_slug_and_sluggable_type"
|
18
|
+
t.index ["sluggable_id"], name: "index_friendly_id_slugs_on_sluggable_id"
|
19
|
+
t.index ["sluggable_type"], name: "index_friendly_id_slugs_on_sluggable_type"
|
20
|
+
end
|
21
|
+
|
22
|
+
create_table "spree_addresses", force: :cascade do |t|
|
23
|
+
t.string "firstname"
|
24
|
+
t.string "lastname"
|
25
|
+
t.string "address1"
|
26
|
+
t.string "address2"
|
27
|
+
t.string "city"
|
28
|
+
t.string "zipcode"
|
29
|
+
t.string "phone"
|
30
|
+
t.string "state_name"
|
31
|
+
t.string "alternative_phone"
|
32
|
+
t.string "company"
|
33
|
+
t.bigint "state_id"
|
34
|
+
t.bigint "country_id"
|
35
|
+
t.datetime "created_at", precision: 6, null: false
|
36
|
+
t.datetime "updated_at", precision: 6, null: false
|
37
|
+
t.bigint "user_id"
|
38
|
+
t.datetime "deleted_at"
|
39
|
+
t.string "label"
|
40
|
+
t.index ["country_id"], name: "index_spree_addresses_on_country_id"
|
41
|
+
t.index ["deleted_at"], name: "index_spree_addresses_on_deleted_at"
|
42
|
+
t.index ["firstname"], name: "index_addresses_on_firstname"
|
43
|
+
t.index ["lastname"], name: "index_addresses_on_lastname"
|
44
|
+
t.index ["state_id"], name: "index_spree_addresses_on_state_id"
|
45
|
+
t.index ["user_id"], name: "index_spree_addresses_on_user_id"
|
46
|
+
end
|
47
|
+
|
48
|
+
create_table "spree_adjustments", force: :cascade do |t|
|
49
|
+
t.string "source_type"
|
50
|
+
t.bigint "source_id"
|
51
|
+
t.string "adjustable_type"
|
52
|
+
t.bigint "adjustable_id"
|
53
|
+
t.decimal "amount", precision: 10, scale: 2
|
54
|
+
t.string "label"
|
55
|
+
t.boolean "mandatory"
|
56
|
+
t.boolean "eligible", default: true
|
57
|
+
t.datetime "created_at", precision: 6, null: false
|
58
|
+
t.datetime "updated_at", precision: 6, null: false
|
59
|
+
t.string "state"
|
60
|
+
t.bigint "order_id", null: false
|
61
|
+
t.boolean "included", default: false
|
62
|
+
t.index ["adjustable_id", "adjustable_type"], name: "index_spree_adjustments_on_adjustable_id_and_adjustable_type"
|
63
|
+
t.index ["eligible"], name: "index_spree_adjustments_on_eligible"
|
64
|
+
t.index ["order_id"], name: "index_spree_adjustments_on_order_id"
|
65
|
+
t.index ["source_id", "source_type"], name: "index_spree_adjustments_on_source_id_and_source_type"
|
66
|
+
end
|
67
|
+
|
68
|
+
create_table "spree_assets", force: :cascade do |t|
|
69
|
+
t.string "viewable_type"
|
70
|
+
t.bigint "viewable_id"
|
71
|
+
t.integer "attachment_width"
|
72
|
+
t.integer "attachment_height"
|
73
|
+
t.integer "attachment_file_size"
|
74
|
+
t.integer "position"
|
75
|
+
t.string "attachment_content_type"
|
76
|
+
t.string "attachment_file_name"
|
77
|
+
t.string "type", limit: 75
|
78
|
+
t.datetime "attachment_updated_at"
|
79
|
+
t.text "alt"
|
80
|
+
t.datetime "created_at"
|
81
|
+
t.datetime "updated_at"
|
82
|
+
t.index ["position"], name: "index_spree_assets_on_position"
|
83
|
+
t.index ["viewable_id"], name: "index_assets_on_viewable_id"
|
84
|
+
t.index ["viewable_type", "type"], name: "index_assets_on_viewable_type_and_type"
|
85
|
+
end
|
86
|
+
|
87
|
+
create_table "spree_calculators", force: :cascade do |t|
|
88
|
+
t.string "type"
|
89
|
+
t.string "calculable_type"
|
90
|
+
t.bigint "calculable_id"
|
91
|
+
t.datetime "created_at", precision: 6, null: false
|
92
|
+
t.datetime "updated_at", precision: 6, null: false
|
93
|
+
t.text "preferences"
|
94
|
+
t.datetime "deleted_at"
|
95
|
+
t.index ["calculable_id", "calculable_type"], name: "index_spree_calculators_on_calculable_id_and_calculable_type"
|
96
|
+
t.index ["deleted_at"], name: "index_spree_calculators_on_deleted_at"
|
97
|
+
t.index ["id", "type"], name: "index_spree_calculators_on_id_and_type"
|
98
|
+
end
|
99
|
+
|
100
|
+
create_table "spree_cms_pages", force: :cascade do |t|
|
101
|
+
t.string "title", null: false
|
102
|
+
t.string "meta_title"
|
103
|
+
t.text "content"
|
104
|
+
t.text "meta_description"
|
105
|
+
t.boolean "visible", default: true
|
106
|
+
t.string "slug"
|
107
|
+
t.string "type"
|
108
|
+
t.string "locale"
|
109
|
+
t.datetime "deleted_at"
|
110
|
+
t.bigint "store_id"
|
111
|
+
t.datetime "created_at", null: false
|
112
|
+
t.datetime "updated_at", null: false
|
113
|
+
t.index ["deleted_at"], name: "index_spree_cms_pages_on_deleted_at"
|
114
|
+
t.index ["slug", "store_id", "deleted_at"], name: "index_spree_cms_pages_on_slug_and_store_id_and_deleted_at"
|
115
|
+
t.index ["slug", "store_id"], name: "index_spree_cms_pages_on_slug_and_store_id", unique: true
|
116
|
+
t.index ["store_id", "locale", "type"], name: "index_spree_cms_pages_on_store_id_and_locale_and_type"
|
117
|
+
t.index ["store_id"], name: "index_spree_cms_pages_on_store_id"
|
118
|
+
t.index ["title", "type", "store_id"], name: "index_spree_cms_pages_on_title_and_type_and_store_id"
|
119
|
+
t.index ["visible"], name: "index_spree_cms_pages_on_visible"
|
120
|
+
end
|
121
|
+
|
122
|
+
create_table "spree_cms_sections", force: :cascade do |t|
|
123
|
+
t.string "name", null: false
|
124
|
+
t.text "content"
|
125
|
+
t.text "settings"
|
126
|
+
t.string "fit"
|
127
|
+
t.string "destination"
|
128
|
+
t.string "type"
|
129
|
+
t.integer "position"
|
130
|
+
t.string "linked_resource_type"
|
131
|
+
t.bigint "linked_resource_id"
|
132
|
+
t.bigint "cms_page_id"
|
133
|
+
t.datetime "created_at", null: false
|
134
|
+
t.datetime "updated_at", null: false
|
135
|
+
t.index ["cms_page_id"], name: "index_spree_cms_sections_on_cms_page_id"
|
136
|
+
t.index ["linked_resource_type", "linked_resource_id"], name: "index_spree_cms_sections_on_linked_resource"
|
137
|
+
t.index ["position"], name: "index_spree_cms_sections_on_position"
|
138
|
+
t.index ["type"], name: "index_spree_cms_sections_on_type"
|
139
|
+
end
|
140
|
+
|
141
|
+
create_table "spree_countries", force: :cascade do |t|
|
142
|
+
t.string "iso_name"
|
143
|
+
t.string "iso", null: false
|
144
|
+
t.string "iso3", null: false
|
145
|
+
t.string "name"
|
146
|
+
t.integer "numcode"
|
147
|
+
t.boolean "states_required", default: false
|
148
|
+
t.datetime "updated_at"
|
149
|
+
t.boolean "zipcode_required", default: true
|
150
|
+
t.datetime "created_at"
|
151
|
+
t.index ["iso_name"], name: "index_spree_countries_on_iso_name", unique: true
|
152
|
+
t.index ["name"], name: "index_spree_countries_on_name", unique: true
|
153
|
+
t.index ["iso"], name: "index_spree_countries_on_iso", unique: true
|
154
|
+
t.index ["iso3"], name: "index_spree_countries_on_iso3", unique: true
|
155
|
+
end
|
156
|
+
|
157
|
+
create_table "spree_credit_cards", force: :cascade do |t|
|
158
|
+
t.string "month"
|
159
|
+
t.string "year"
|
160
|
+
t.string "cc_type"
|
161
|
+
t.string "last_digits"
|
162
|
+
t.bigint "address_id"
|
163
|
+
t.string "gateway_customer_profile_id"
|
164
|
+
t.string "gateway_payment_profile_id"
|
165
|
+
t.datetime "created_at", precision: 6, null: false
|
166
|
+
t.datetime "updated_at", precision: 6, null: false
|
167
|
+
t.string "name"
|
168
|
+
t.bigint "user_id"
|
169
|
+
t.bigint "payment_method_id"
|
170
|
+
t.boolean "default", default: false, null: false
|
171
|
+
t.datetime "deleted_at"
|
172
|
+
t.index ["address_id"], name: "index_spree_credit_cards_on_address_id"
|
173
|
+
t.index ["deleted_at"], name: "index_spree_credit_cards_on_deleted_at"
|
174
|
+
t.index ["payment_method_id"], name: "index_spree_credit_cards_on_payment_method_id"
|
175
|
+
t.index ["user_id"], name: "index_spree_credit_cards_on_user_id"
|
176
|
+
end
|
177
|
+
|
178
|
+
create_table "spree_customer_returns", force: :cascade do |t|
|
179
|
+
t.string "number"
|
180
|
+
t.bigint "stock_location_id"
|
181
|
+
t.datetime "created_at", precision: 6, null: false
|
182
|
+
t.datetime "updated_at", precision: 6, null: false
|
183
|
+
t.bigint "store_id"
|
184
|
+
t.index ["number"], name: "index_spree_customer_returns_on_number", unique: true
|
185
|
+
t.index ["stock_location_id"], name: "index_spree_customer_returns_on_stock_location_id"
|
186
|
+
t.index ["store_id"], name: "index_spree_customer_returns_on_store_id"
|
187
|
+
end
|
188
|
+
|
189
|
+
create_table "spree_gateways", force: :cascade do |t|
|
190
|
+
t.string "type"
|
191
|
+
t.string "name"
|
192
|
+
t.text "description"
|
193
|
+
t.boolean "active", default: true
|
194
|
+
t.string "environment", default: "development"
|
195
|
+
t.string "server", default: "test"
|
196
|
+
t.boolean "test_mode", default: true
|
197
|
+
t.datetime "created_at", precision: 6, null: false
|
198
|
+
t.datetime "updated_at", precision: 6, null: false
|
199
|
+
t.text "preferences"
|
200
|
+
t.index ["active"], name: "index_spree_gateways_on_active"
|
201
|
+
t.index ["test_mode"], name: "index_spree_gateways_on_test_mode"
|
202
|
+
end
|
203
|
+
|
204
|
+
create_table "spree_inventory_units", force: :cascade do |t|
|
205
|
+
t.string "state"
|
206
|
+
t.bigint "variant_id"
|
207
|
+
t.bigint "order_id"
|
208
|
+
t.bigint "shipment_id"
|
209
|
+
t.datetime "created_at", precision: 6, null: false
|
210
|
+
t.datetime "updated_at", precision: 6, null: false
|
211
|
+
t.boolean "pending", default: true
|
212
|
+
t.bigint "line_item_id"
|
213
|
+
t.integer "quantity", default: 1
|
214
|
+
t.bigint "original_return_item_id"
|
215
|
+
t.index ["line_item_id"], name: "index_spree_inventory_units_on_line_item_id"
|
216
|
+
t.index ["order_id"], name: "index_inventory_units_on_order_id"
|
217
|
+
t.index ["original_return_item_id"], name: "index_spree_inventory_units_on_original_return_item_id"
|
218
|
+
t.index ["shipment_id"], name: "index_inventory_units_on_shipment_id"
|
219
|
+
t.index ["variant_id"], name: "index_inventory_units_on_variant_id"
|
220
|
+
end
|
221
|
+
|
222
|
+
create_table "spree_line_items", force: :cascade do |t|
|
223
|
+
t.bigint "variant_id"
|
224
|
+
t.bigint "order_id"
|
225
|
+
t.integer "quantity", null: false
|
226
|
+
t.decimal "price", precision: 10, scale: 2, null: false
|
227
|
+
t.datetime "created_at", precision: 6, null: false
|
228
|
+
t.datetime "updated_at", precision: 6, null: false
|
229
|
+
t.string "currency"
|
230
|
+
t.decimal "cost_price", precision: 10, scale: 2
|
231
|
+
t.bigint "tax_category_id"
|
232
|
+
t.decimal "adjustment_total", precision: 10, scale: 2, default: "0.0"
|
233
|
+
t.decimal "additional_tax_total", precision: 10, scale: 2, default: "0.0"
|
234
|
+
t.decimal "promo_total", precision: 10, scale: 2, default: "0.0"
|
235
|
+
t.decimal "included_tax_total", precision: 10, scale: 2, default: "0.0", null: false
|
236
|
+
t.decimal "pre_tax_amount", precision: 12, scale: 4, default: "0.0", null: false
|
237
|
+
t.decimal "taxable_adjustment_total", precision: 10, scale: 2, default: "0.0", null: false
|
238
|
+
t.decimal "non_taxable_adjustment_total", precision: 10, scale: 2, default: "0.0", null: false
|
239
|
+
t.index ["order_id"], name: "index_spree_line_items_on_order_id"
|
240
|
+
t.index ["tax_category_id"], name: "index_spree_line_items_on_tax_category_id"
|
241
|
+
t.index ["variant_id"], name: "index_spree_line_items_on_variant_id"
|
242
|
+
end
|
243
|
+
|
244
|
+
create_table "spree_log_entries", force: :cascade do |t|
|
245
|
+
t.string "source_type"
|
246
|
+
t.bigint "source_id"
|
247
|
+
t.text "details"
|
248
|
+
t.datetime "created_at", precision: 6, null: false
|
249
|
+
t.datetime "updated_at", precision: 6, null: false
|
250
|
+
t.index ["source_id", "source_type"], name: "index_spree_log_entries_on_source_id_and_source_type"
|
251
|
+
end
|
252
|
+
|
253
|
+
create_table "spree_menu_items", force: :cascade do |t|
|
254
|
+
t.string "name", null: false
|
255
|
+
t.string "subtitle"
|
256
|
+
t.string "destination"
|
257
|
+
t.boolean "new_window", default: false
|
258
|
+
t.string "item_type"
|
259
|
+
t.string "linked_resource_type", default: "URL"
|
260
|
+
t.bigint "linked_resource_id"
|
261
|
+
t.string "code"
|
262
|
+
t.bigint "parent_id"
|
263
|
+
t.bigint "lft", null: false
|
264
|
+
t.bigint "rgt", null: false
|
265
|
+
t.integer "depth", default: 0, null: false
|
266
|
+
t.bigint "menu_id"
|
267
|
+
t.datetime "created_at", null: false
|
268
|
+
t.datetime "updated_at", null: false
|
269
|
+
t.index ["code"], name: "index_spree_menu_items_on_code"
|
270
|
+
t.index ["depth"], name: "index_spree_menu_items_on_depth"
|
271
|
+
t.index ["item_type"], name: "index_spree_menu_items_on_item_type"
|
272
|
+
t.index ["lft"], name: "index_spree_menu_items_on_lft"
|
273
|
+
t.index ["linked_resource_type", "linked_resource_id"], name: "index_spree_menu_items_on_linked_resource"
|
274
|
+
t.index ["menu_id"], name: "index_spree_menu_items_on_menu_id"
|
275
|
+
t.index ["parent_id"], name: "index_spree_menu_items_on_parent_id"
|
276
|
+
t.index ["rgt"], name: "index_spree_menu_items_on_rgt"
|
277
|
+
end
|
278
|
+
|
279
|
+
create_table "spree_menus", force: :cascade do |t|
|
280
|
+
t.string "name"
|
281
|
+
t.string "location"
|
282
|
+
t.string "locale"
|
283
|
+
t.bigint "store_id"
|
284
|
+
t.datetime "created_at", null: false
|
285
|
+
t.datetime "updated_at", null: false
|
286
|
+
t.index ["locale"], name: "index_spree_menus_on_locale"
|
287
|
+
t.index ["store_id", "location", "locale"], name: "index_spree_menus_on_store_id_and_location_and_locale", unique: true
|
288
|
+
t.index ["store_id"], name: "index_spree_menus_on_store_id"
|
289
|
+
end
|
290
|
+
|
291
|
+
create_table "spree_option_type_prototypes", force: :cascade do |t|
|
292
|
+
t.bigint "prototype_id"
|
293
|
+
t.bigint "option_type_id"
|
294
|
+
t.datetime "created_at"
|
295
|
+
t.datetime "updated_at"
|
296
|
+
t.index ["option_type_id"], name: "index_spree_option_type_prototypes_on_option_type_id"
|
297
|
+
t.index ["prototype_id", "option_type_id"], name: "spree_option_type_prototypes_prototype_id_option_type_id", unique: true
|
298
|
+
t.index ["prototype_id"], name: "index_spree_option_type_prototypes_on_prototype_id"
|
299
|
+
end
|
300
|
+
|
301
|
+
create_table "spree_option_types", force: :cascade do |t|
|
302
|
+
t.string "name", limit: 100
|
303
|
+
t.string "presentation", limit: 100
|
304
|
+
t.integer "position", default: 0, null: false
|
305
|
+
t.datetime "created_at", precision: 6, null: false
|
306
|
+
t.datetime "updated_at", precision: 6, null: false
|
307
|
+
t.boolean "filterable", default: true, null: false
|
308
|
+
t.index ["filterable"], name: "index_spree_option_types_on_filterable"
|
309
|
+
t.index ["name"], name: "index_spree_option_types_on_name"
|
310
|
+
t.index ["position"], name: "index_spree_option_types_on_position"
|
311
|
+
end
|
312
|
+
|
313
|
+
create_table "spree_option_value_variants", force: :cascade do |t|
|
314
|
+
t.bigint "variant_id"
|
315
|
+
t.bigint "option_value_id"
|
316
|
+
t.datetime "created_at"
|
317
|
+
t.datetime "updated_at"
|
318
|
+
t.index ["option_value_id"], name: "index_spree_option_value_variants_on_option_value_id"
|
319
|
+
t.index ["variant_id", "option_value_id"], name: "index_option_values_variants_on_variant_id_and_option_value_id", unique: true
|
320
|
+
t.index ["variant_id"], name: "index_spree_option_value_variants_on_variant_id"
|
321
|
+
end
|
322
|
+
|
323
|
+
create_table "spree_option_values", force: :cascade do |t|
|
324
|
+
t.integer "position"
|
325
|
+
t.string "name"
|
326
|
+
t.string "presentation"
|
327
|
+
t.bigint "option_type_id"
|
328
|
+
t.datetime "created_at", precision: 6, null: false
|
329
|
+
t.datetime "updated_at", precision: 6, null: false
|
330
|
+
t.index ["name"], name: "index_spree_option_values_on_name"
|
331
|
+
t.index ["option_type_id"], name: "index_spree_option_values_on_option_type_id"
|
332
|
+
t.index ["position"], name: "index_spree_option_values_on_position"
|
333
|
+
end
|
334
|
+
|
335
|
+
create_table "spree_order_promotions", force: :cascade do |t|
|
336
|
+
t.bigint "order_id"
|
337
|
+
t.bigint "promotion_id"
|
338
|
+
t.datetime "created_at"
|
339
|
+
t.datetime "updated_at"
|
340
|
+
t.index ["order_id"], name: "index_spree_order_promotions_on_order_id"
|
341
|
+
t.index ["promotion_id", "order_id"], name: "index_spree_order_promotions_on_promotion_id_and_order_id"
|
342
|
+
t.index ["promotion_id"], name: "index_spree_order_promotions_on_promotion_id"
|
343
|
+
end
|
344
|
+
|
345
|
+
create_table "spree_orders", force: :cascade do |t|
|
346
|
+
t.string "number", limit: 32
|
347
|
+
t.decimal "item_total", precision: 10, scale: 2, default: "0.0", null: false
|
348
|
+
t.decimal "total", precision: 10, scale: 2, default: "0.0", null: false
|
349
|
+
t.string "state"
|
350
|
+
t.decimal "adjustment_total", precision: 10, scale: 2, default: "0.0", null: false
|
351
|
+
t.bigint "user_id"
|
352
|
+
t.datetime "completed_at"
|
353
|
+
t.bigint "bill_address_id"
|
354
|
+
t.bigint "ship_address_id"
|
355
|
+
t.decimal "payment_total", precision: 10, scale: 2, default: "0.0"
|
356
|
+
t.string "shipment_state"
|
357
|
+
t.string "payment_state"
|
358
|
+
t.string "email"
|
359
|
+
t.text "special_instructions"
|
360
|
+
t.datetime "created_at", precision: 6, null: false
|
361
|
+
t.datetime "updated_at", precision: 6, null: false
|
362
|
+
t.string "currency"
|
363
|
+
t.string "last_ip_address"
|
364
|
+
t.bigint "created_by_id"
|
365
|
+
t.decimal "shipment_total", precision: 10, scale: 2, default: "0.0", null: false
|
366
|
+
t.decimal "additional_tax_total", precision: 10, scale: 2, default: "0.0"
|
367
|
+
t.decimal "promo_total", precision: 10, scale: 2, default: "0.0"
|
368
|
+
t.string "channel", default: "spree"
|
369
|
+
t.decimal "included_tax_total", precision: 10, scale: 2, default: "0.0", null: false
|
370
|
+
t.integer "item_count", default: 0
|
371
|
+
t.bigint "approver_id"
|
372
|
+
t.datetime "approved_at"
|
373
|
+
t.boolean "confirmation_delivered", default: false
|
374
|
+
t.boolean "considered_risky", default: false
|
375
|
+
t.string "token"
|
376
|
+
t.datetime "canceled_at"
|
377
|
+
t.bigint "canceler_id"
|
378
|
+
t.bigint "store_id"
|
379
|
+
t.integer "state_lock_version", default: 0, null: false
|
380
|
+
t.decimal "taxable_adjustment_total", precision: 10, scale: 2, default: "0.0", null: false
|
381
|
+
t.decimal "non_taxable_adjustment_total", precision: 10, scale: 2, default: "0.0", null: false
|
382
|
+
t.boolean "store_owner_notification_delivered"
|
383
|
+
t.index ["approver_id"], name: "index_spree_orders_on_approver_id"
|
384
|
+
t.index ["bill_address_id"], name: "index_spree_orders_on_bill_address_id"
|
385
|
+
t.index ["canceler_id"], name: "index_spree_orders_on_canceler_id"
|
386
|
+
t.index ["completed_at"], name: "index_spree_orders_on_completed_at"
|
387
|
+
t.index ["confirmation_delivered"], name: "index_spree_orders_on_confirmation_delivered"
|
388
|
+
t.index ["considered_risky"], name: "index_spree_orders_on_considered_risky"
|
389
|
+
t.index ["created_by_id"], name: "index_spree_orders_on_created_by_id"
|
390
|
+
t.index ["number"], name: "index_spree_orders_on_number", unique: true
|
391
|
+
t.index ["ship_address_id"], name: "index_spree_orders_on_ship_address_id"
|
392
|
+
t.index ["store_id"], name: "index_spree_orders_on_store_id"
|
393
|
+
t.index ["token"], name: "index_spree_orders_on_token"
|
394
|
+
t.index ["user_id", "created_by_id"], name: "index_spree_orders_on_user_id_and_created_by_id"
|
395
|
+
end
|
396
|
+
|
397
|
+
create_table "spree_payment_capture_events", force: :cascade do |t|
|
398
|
+
t.decimal "amount", precision: 10, scale: 2, default: "0.0"
|
399
|
+
t.bigint "payment_id"
|
400
|
+
t.datetime "created_at", precision: 6, null: false
|
401
|
+
t.datetime "updated_at", precision: 6, null: false
|
402
|
+
t.index ["payment_id"], name: "index_spree_payment_capture_events_on_payment_id"
|
403
|
+
end
|
404
|
+
|
405
|
+
create_table "spree_payment_methods", force: :cascade do |t|
|
406
|
+
t.string "type"
|
407
|
+
t.string "name"
|
408
|
+
t.text "description"
|
409
|
+
t.boolean "active", default: true
|
410
|
+
t.datetime "deleted_at"
|
411
|
+
t.datetime "created_at", precision: 6, null: false
|
412
|
+
t.datetime "updated_at", precision: 6, null: false
|
413
|
+
t.string "display_on", default: "both"
|
414
|
+
t.boolean "auto_capture"
|
415
|
+
t.text "preferences"
|
416
|
+
t.integer "position", default: 0
|
417
|
+
t.index ["id", "type"], name: "index_spree_payment_methods_on_id_and_type"
|
418
|
+
end
|
419
|
+
|
420
|
+
create_table "spree_payment_methods_stores", id: false, force: :cascade do |t|
|
421
|
+
t.bigint "payment_method_id"
|
422
|
+
t.bigint "store_id"
|
423
|
+
t.index ["payment_method_id", "store_id"], name: "payment_mentod_id_store_id_unique_index", unique: true
|
424
|
+
t.index ["payment_method_id"], name: "index_spree_payment_methods_stores_on_payment_method_id"
|
425
|
+
t.index ["store_id"], name: "index_spree_payment_methods_stores_on_store_id"
|
426
|
+
end
|
427
|
+
|
428
|
+
create_table "spree_payments", force: :cascade do |t|
|
429
|
+
t.decimal "amount", precision: 10, scale: 2, default: "0.0", null: false
|
430
|
+
t.bigint "order_id"
|
431
|
+
t.string "source_type"
|
432
|
+
t.bigint "source_id"
|
433
|
+
t.bigint "payment_method_id"
|
434
|
+
t.string "state"
|
435
|
+
t.string "response_code"
|
436
|
+
t.string "avs_response"
|
437
|
+
t.datetime "created_at", precision: 6, null: false
|
438
|
+
t.datetime "updated_at", precision: 6, null: false
|
439
|
+
t.string "number"
|
440
|
+
t.string "cvv_response_code"
|
441
|
+
t.string "cvv_response_message"
|
442
|
+
t.index ["number"], name: "index_spree_payments_on_number", unique: true
|
443
|
+
t.index ["order_id"], name: "index_spree_payments_on_order_id"
|
444
|
+
t.index ["payment_method_id"], name: "index_spree_payments_on_payment_method_id"
|
445
|
+
t.index ["source_id", "source_type"], name: "index_spree_payments_on_source_id_and_source_type"
|
446
|
+
end
|
447
|
+
|
448
|
+
create_table "spree_preferences", force: :cascade do |t|
|
449
|
+
t.text "value"
|
450
|
+
t.string "key"
|
451
|
+
t.datetime "created_at", precision: 6, null: false
|
452
|
+
t.datetime "updated_at", precision: 6, null: false
|
453
|
+
t.index ["key"], name: "index_spree_preferences_on_key", unique: true
|
454
|
+
end
|
455
|
+
|
456
|
+
create_table "spree_prices", force: :cascade do |t|
|
457
|
+
t.bigint "variant_id", null: false
|
458
|
+
t.decimal "amount", precision: 10, scale: 2
|
459
|
+
t.string "currency"
|
460
|
+
t.datetime "deleted_at"
|
461
|
+
t.datetime "created_at", null: false
|
462
|
+
t.datetime "updated_at", null: false
|
463
|
+
t.decimal "compare_at_amount", precision: 10, scale: 2
|
464
|
+
t.index ["deleted_at"], name: "index_spree_prices_on_deleted_at"
|
465
|
+
t.index ["variant_id", "currency"], name: "index_spree_prices_on_variant_id_and_currency"
|
466
|
+
t.index ["variant_id"], name: "index_spree_prices_on_variant_id"
|
467
|
+
end
|
468
|
+
|
469
|
+
create_table "spree_product_option_types", force: :cascade do |t|
|
470
|
+
t.integer "position"
|
471
|
+
t.bigint "product_id"
|
472
|
+
t.bigint "option_type_id"
|
473
|
+
t.datetime "created_at", precision: 6, null: false
|
474
|
+
t.datetime "updated_at", precision: 6, null: false
|
475
|
+
t.index ["option_type_id"], name: "index_spree_product_option_types_on_option_type_id"
|
476
|
+
t.index ["position"], name: "index_spree_product_option_types_on_position"
|
477
|
+
t.index ["product_id"], name: "index_spree_product_option_types_on_product_id"
|
478
|
+
end
|
479
|
+
|
480
|
+
create_table "spree_product_promotion_rules", force: :cascade do |t|
|
481
|
+
t.bigint "product_id"
|
482
|
+
t.bigint "promotion_rule_id"
|
483
|
+
t.datetime "created_at"
|
484
|
+
t.datetime "updated_at"
|
485
|
+
t.index ["product_id"], name: "index_products_promotion_rules_on_product_id"
|
486
|
+
t.index ["promotion_rule_id", "product_id"], name: "index_products_promotion_rules_on_promotion_rule_and_product"
|
487
|
+
end
|
488
|
+
|
489
|
+
create_table "spree_product_properties", force: :cascade do |t|
|
490
|
+
t.string "value"
|
491
|
+
t.bigint "product_id"
|
492
|
+
t.bigint "property_id"
|
493
|
+
t.datetime "created_at", precision: 6, null: false
|
494
|
+
t.datetime "updated_at", precision: 6, null: false
|
495
|
+
t.integer "position", default: 0
|
496
|
+
t.boolean "show_property", default: true
|
497
|
+
t.string "filter_param"
|
498
|
+
t.index ["filter_param"], name: "index_spree_product_properties_on_filter_param"
|
499
|
+
t.index ["position"], name: "index_spree_product_properties_on_position"
|
500
|
+
t.index ["product_id"], name: "index_product_properties_on_product_id"
|
501
|
+
t.index ["property_id", "product_id"], name: "index_spree_product_properties_on_property_id_and_product_id", unique: true
|
502
|
+
t.index ["property_id"], name: "index_spree_product_properties_on_property_id"
|
503
|
+
end
|
504
|
+
|
505
|
+
create_table "spree_products", force: :cascade do |t|
|
506
|
+
t.string "name", default: "", null: false
|
507
|
+
t.text "description"
|
508
|
+
t.datetime "available_on"
|
509
|
+
t.datetime "deleted_at"
|
510
|
+
t.string "slug"
|
511
|
+
t.text "meta_description"
|
512
|
+
t.string "meta_keywords"
|
513
|
+
t.bigint "tax_category_id"
|
514
|
+
t.bigint "shipping_category_id"
|
515
|
+
t.datetime "created_at", precision: 6, null: false
|
516
|
+
t.datetime "updated_at", precision: 6, null: false
|
517
|
+
t.boolean "promotionable", default: true
|
518
|
+
t.string "meta_title"
|
519
|
+
t.datetime "discontinue_on"
|
520
|
+
t.index ["available_on"], name: "index_spree_products_on_available_on"
|
521
|
+
t.index ["deleted_at"], name: "index_spree_products_on_deleted_at"
|
522
|
+
t.index ["discontinue_on"], name: "index_spree_products_on_discontinue_on"
|
523
|
+
t.index ["name"], name: "index_spree_products_on_name"
|
524
|
+
t.index ["shipping_category_id"], name: "index_spree_products_on_shipping_category_id"
|
525
|
+
t.index ["slug"], name: "index_spree_products_on_slug", unique: true
|
526
|
+
t.index ["tax_category_id"], name: "index_spree_products_on_tax_category_id"
|
527
|
+
end
|
528
|
+
|
529
|
+
create_table "spree_products_stores", force: :cascade do |t|
|
530
|
+
t.bigint "product_id"
|
531
|
+
t.bigint "store_id"
|
532
|
+
t.datetime "created_at", null: false
|
533
|
+
t.datetime "updated_at", null: false
|
534
|
+
t.index ["product_id", "store_id"], name: "index_spree_products_stores_on_product_id_and_store_id", unique: true
|
535
|
+
t.index ["product_id"], name: "index_spree_products_stores_on_product_id"
|
536
|
+
t.index ["store_id"], name: "index_spree_products_stores_on_store_id"
|
537
|
+
end
|
538
|
+
|
539
|
+
create_table "spree_products_taxons", force: :cascade do |t|
|
540
|
+
t.bigint "product_id"
|
541
|
+
t.bigint "taxon_id"
|
542
|
+
t.integer "position"
|
543
|
+
t.datetime "created_at"
|
544
|
+
t.datetime "updated_at"
|
545
|
+
t.index ["position"], name: "index_spree_products_taxons_on_position"
|
546
|
+
t.index ["product_id", "taxon_id"], name: "index_spree_products_taxons_on_product_id_and_taxon_id", unique: true
|
547
|
+
t.index ["product_id"], name: "index_spree_products_taxons_on_product_id"
|
548
|
+
t.index ["taxon_id"], name: "index_spree_products_taxons_on_taxon_id"
|
549
|
+
end
|
550
|
+
|
551
|
+
create_table "spree_promotion_action_line_items", force: :cascade do |t|
|
552
|
+
t.bigint "promotion_action_id"
|
553
|
+
t.bigint "variant_id"
|
554
|
+
t.integer "quantity", default: 1
|
555
|
+
t.datetime "created_at"
|
556
|
+
t.datetime "updated_at"
|
557
|
+
t.index ["promotion_action_id"], name: "index_spree_promotion_action_line_items_on_promotion_action_id"
|
558
|
+
t.index ["variant_id"], name: "index_spree_promotion_action_line_items_on_variant_id"
|
559
|
+
end
|
560
|
+
|
561
|
+
create_table "spree_promotion_actions", force: :cascade do |t|
|
562
|
+
t.bigint "promotion_id"
|
563
|
+
t.integer "position"
|
564
|
+
t.string "type"
|
565
|
+
t.datetime "deleted_at"
|
566
|
+
t.datetime "created_at"
|
567
|
+
t.datetime "updated_at"
|
568
|
+
t.index ["deleted_at"], name: "index_spree_promotion_actions_on_deleted_at"
|
569
|
+
t.index ["id", "type"], name: "index_spree_promotion_actions_on_id_and_type"
|
570
|
+
t.index ["promotion_id"], name: "index_spree_promotion_actions_on_promotion_id"
|
571
|
+
end
|
572
|
+
|
573
|
+
create_table "spree_promotion_categories", force: :cascade do |t|
|
574
|
+
t.string "name"
|
575
|
+
t.datetime "created_at", precision: 6, null: false
|
576
|
+
t.datetime "updated_at", precision: 6, null: false
|
577
|
+
t.string "code"
|
578
|
+
end
|
579
|
+
|
580
|
+
create_table "spree_promotion_rule_taxons", force: :cascade do |t|
|
581
|
+
t.bigint "taxon_id"
|
582
|
+
t.bigint "promotion_rule_id"
|
583
|
+
t.datetime "created_at"
|
584
|
+
t.datetime "updated_at"
|
585
|
+
t.index ["promotion_rule_id"], name: "index_spree_promotion_rule_taxons_on_promotion_rule_id"
|
586
|
+
t.index ["taxon_id"], name: "index_spree_promotion_rule_taxons_on_taxon_id"
|
587
|
+
end
|
588
|
+
|
589
|
+
create_table "spree_promotion_rule_users", force: :cascade do |t|
|
590
|
+
t.bigint "user_id"
|
591
|
+
t.bigint "promotion_rule_id"
|
592
|
+
t.datetime "created_at"
|
593
|
+
t.datetime "updated_at"
|
594
|
+
t.index ["promotion_rule_id"], name: "index_promotion_rules_users_on_promotion_rule_id"
|
595
|
+
t.index ["user_id", "promotion_rule_id"], name: "index_promotion_rules_users_on_user_id_and_promotion_rule_id"
|
596
|
+
end
|
597
|
+
|
598
|
+
create_table "spree_promotion_rules", force: :cascade do |t|
|
599
|
+
t.bigint "promotion_id"
|
600
|
+
t.bigint "user_id"
|
601
|
+
t.bigint "product_group_id"
|
602
|
+
t.string "type"
|
603
|
+
t.datetime "created_at", precision: 6, null: false
|
604
|
+
t.datetime "updated_at", precision: 6, null: false
|
605
|
+
t.string "code"
|
606
|
+
t.text "preferences"
|
607
|
+
t.index ["product_group_id"], name: "index_promotion_rules_on_product_group_id"
|
608
|
+
t.index ["promotion_id"], name: "index_spree_promotion_rules_on_promotion_id"
|
609
|
+
t.index ["user_id"], name: "index_promotion_rules_on_user_id"
|
610
|
+
end
|
611
|
+
|
612
|
+
create_table "spree_promotions", force: :cascade do |t|
|
613
|
+
t.string "description"
|
614
|
+
t.datetime "expires_at"
|
615
|
+
t.datetime "starts_at"
|
616
|
+
t.string "name"
|
617
|
+
t.string "type"
|
618
|
+
t.integer "usage_limit"
|
619
|
+
t.string "match_policy", default: "all"
|
620
|
+
t.string "code"
|
621
|
+
t.boolean "advertise", default: false
|
622
|
+
t.string "path"
|
623
|
+
t.datetime "created_at", precision: 6, null: false
|
624
|
+
t.datetime "updated_at", precision: 6, null: false
|
625
|
+
t.bigint "promotion_category_id"
|
626
|
+
t.index ["advertise"], name: "index_spree_promotions_on_advertise"
|
627
|
+
t.index ["code"], name: "index_spree_promotions_on_code"
|
628
|
+
t.index ["expires_at"], name: "index_spree_promotions_on_expires_at"
|
629
|
+
t.index ["id", "type"], name: "index_spree_promotions_on_id_and_type"
|
630
|
+
t.index ["path"], name: "index_spree_promotions_on_path"
|
631
|
+
t.index ["promotion_category_id"], name: "index_spree_promotions_on_promotion_category_id"
|
632
|
+
t.index ["starts_at"], name: "index_spree_promotions_on_starts_at"
|
633
|
+
end
|
634
|
+
|
635
|
+
create_table "spree_promotions_stores", force: :cascade do |t|
|
636
|
+
t.bigint "promotion_id"
|
637
|
+
t.bigint "store_id"
|
638
|
+
t.datetime "created_at", null: false
|
639
|
+
t.datetime "updated_at", null: false
|
640
|
+
t.index ["promotion_id", "store_id"], name: "index_spree_promotions_stores_on_promotion_id_and_store_id", unique: true
|
641
|
+
t.index ["promotion_id"], name: "index_spree_promotions_stores_on_promotion_id"
|
642
|
+
t.index ["store_id"], name: "index_spree_promotions_stores_on_store_id"
|
643
|
+
end
|
644
|
+
|
645
|
+
create_table "spree_properties", force: :cascade do |t|
|
646
|
+
t.string "name"
|
647
|
+
t.string "presentation", null: false
|
648
|
+
t.datetime "created_at", precision: 6, null: false
|
649
|
+
t.datetime "updated_at", precision: 6, null: false
|
650
|
+
t.boolean "filterable", default: false, null: false
|
651
|
+
t.string "filter_param"
|
652
|
+
t.index ["filter_param"], name: "index_spree_properties_on_filter_param"
|
653
|
+
t.index ["filterable"], name: "index_spree_properties_on_filterable"
|
654
|
+
t.index ["name"], name: "index_spree_properties_on_name"
|
655
|
+
end
|
656
|
+
|
657
|
+
create_table "spree_property_prototypes", force: :cascade do |t|
|
658
|
+
t.bigint "prototype_id"
|
659
|
+
t.bigint "property_id"
|
660
|
+
t.datetime "created_at"
|
661
|
+
t.datetime "updated_at"
|
662
|
+
t.index ["property_id"], name: "index_spree_property_prototypes_on_property_id"
|
663
|
+
t.index ["prototype_id", "property_id"], name: "index_property_prototypes_on_prototype_id_and_property_id", unique: true
|
664
|
+
t.index ["prototype_id"], name: "index_spree_property_prototypes_on_prototype_id"
|
665
|
+
end
|
666
|
+
|
667
|
+
create_table "spree_prototype_taxons", force: :cascade do |t|
|
668
|
+
t.bigint "taxon_id"
|
669
|
+
t.bigint "prototype_id"
|
670
|
+
t.datetime "created_at"
|
671
|
+
t.datetime "updated_at"
|
672
|
+
t.index ["prototype_id", "taxon_id"], name: "index_spree_prototype_taxons_on_prototype_id_and_taxon_id"
|
673
|
+
t.index ["prototype_id"], name: "index_spree_prototype_taxons_on_prototype_id"
|
674
|
+
t.index ["taxon_id"], name: "index_spree_prototype_taxons_on_taxon_id"
|
675
|
+
end
|
676
|
+
|
677
|
+
create_table "spree_prototypes", force: :cascade do |t|
|
678
|
+
t.string "name"
|
679
|
+
t.datetime "created_at", precision: 6, null: false
|
680
|
+
t.datetime "updated_at", precision: 6, null: false
|
681
|
+
end
|
682
|
+
|
683
|
+
create_table "spree_refund_reasons", force: :cascade do |t|
|
684
|
+
t.string "name"
|
685
|
+
t.boolean "active", default: true
|
686
|
+
t.boolean "mutable", default: true
|
687
|
+
t.datetime "created_at", precision: 6, null: false
|
688
|
+
t.datetime "updated_at", precision: 6, null: false
|
689
|
+
t.index ["name"], name: "index_spree_refund_reasons_on_name", unique: true
|
690
|
+
end
|
691
|
+
|
692
|
+
create_table "spree_refunds", force: :cascade do |t|
|
693
|
+
t.bigint "payment_id"
|
694
|
+
t.decimal "amount", precision: 10, scale: 2, default: "0.0", null: false
|
695
|
+
t.string "transaction_id"
|
696
|
+
t.datetime "created_at", precision: 6, null: false
|
697
|
+
t.datetime "updated_at", precision: 6, null: false
|
698
|
+
t.bigint "refund_reason_id"
|
699
|
+
t.bigint "reimbursement_id"
|
700
|
+
t.index ["payment_id"], name: "index_spree_refunds_on_payment_id"
|
701
|
+
t.index ["refund_reason_id"], name: "index_refunds_on_refund_reason_id"
|
702
|
+
t.index ["reimbursement_id"], name: "index_spree_refunds_on_reimbursement_id"
|
703
|
+
end
|
704
|
+
|
705
|
+
create_table "spree_reimbursement_credits", force: :cascade do |t|
|
706
|
+
t.decimal "amount", precision: 10, scale: 2, default: "0.0", null: false
|
707
|
+
t.bigint "reimbursement_id"
|
708
|
+
t.bigint "creditable_id"
|
709
|
+
t.string "creditable_type"
|
710
|
+
t.datetime "created_at"
|
711
|
+
t.datetime "updated_at"
|
712
|
+
t.index ["creditable_id", "creditable_type"], name: "index_reimbursement_credits_on_creditable_id_and_type"
|
713
|
+
t.index ["reimbursement_id"], name: "index_spree_reimbursement_credits_on_reimbursement_id"
|
714
|
+
end
|
715
|
+
|
716
|
+
create_table "spree_reimbursement_types", force: :cascade do |t|
|
717
|
+
t.string "name"
|
718
|
+
t.boolean "active", default: true
|
719
|
+
t.boolean "mutable", default: true
|
720
|
+
t.datetime "created_at", precision: 6, null: false
|
721
|
+
t.datetime "updated_at", precision: 6, null: false
|
722
|
+
t.string "type"
|
723
|
+
t.index ["name"], name: "index_spree_reimbursement_types_on_name", unique: true
|
724
|
+
t.index ["type"], name: "index_spree_reimbursement_types_on_type"
|
725
|
+
end
|
726
|
+
|
727
|
+
create_table "spree_reimbursements", force: :cascade do |t|
|
728
|
+
t.string "number"
|
729
|
+
t.string "reimbursement_status"
|
730
|
+
t.bigint "customer_return_id"
|
731
|
+
t.bigint "order_id"
|
732
|
+
t.decimal "total", precision: 10, scale: 2
|
733
|
+
t.datetime "created_at", precision: 6, null: false
|
734
|
+
t.datetime "updated_at", precision: 6, null: false
|
735
|
+
t.index ["customer_return_id"], name: "index_spree_reimbursements_on_customer_return_id"
|
736
|
+
t.index ["number"], name: "index_spree_reimbursements_on_number", unique: true
|
737
|
+
t.index ["order_id"], name: "index_spree_reimbursements_on_order_id"
|
738
|
+
end
|
739
|
+
|
740
|
+
create_table "spree_return_authorization_reasons", force: :cascade do |t|
|
741
|
+
t.string "name"
|
742
|
+
t.boolean "active", default: true
|
743
|
+
t.boolean "mutable", default: true
|
744
|
+
t.datetime "created_at", precision: 6, null: false
|
745
|
+
t.datetime "updated_at", precision: 6, null: false
|
746
|
+
t.index ["name"], name: "index_spree_return_authorization_reasons_on_name", unique: true
|
747
|
+
end
|
748
|
+
|
749
|
+
create_table "spree_return_authorizations", force: :cascade do |t|
|
750
|
+
t.string "number"
|
751
|
+
t.string "state"
|
752
|
+
t.bigint "order_id"
|
753
|
+
t.text "memo"
|
754
|
+
t.datetime "created_at"
|
755
|
+
t.datetime "updated_at"
|
756
|
+
t.bigint "stock_location_id"
|
757
|
+
t.bigint "return_authorization_reason_id"
|
758
|
+
t.index ["number"], name: "index_spree_return_authorizations_on_number", unique: true
|
759
|
+
t.index ["order_id"], name: "index_spree_return_authorizations_on_order_id"
|
760
|
+
t.index ["return_authorization_reason_id"], name: "index_return_authorizations_on_return_authorization_reason_id"
|
761
|
+
t.index ["stock_location_id"], name: "index_spree_return_authorizations_on_stock_location_id"
|
762
|
+
end
|
763
|
+
|
764
|
+
create_table "spree_return_items", force: :cascade do |t|
|
765
|
+
t.bigint "return_authorization_id"
|
766
|
+
t.bigint "inventory_unit_id"
|
767
|
+
t.bigint "exchange_variant_id"
|
768
|
+
t.datetime "created_at", precision: 6, null: false
|
769
|
+
t.datetime "updated_at", precision: 6, null: false
|
770
|
+
t.decimal "pre_tax_amount", precision: 12, scale: 4, default: "0.0", null: false
|
771
|
+
t.decimal "included_tax_total", precision: 12, scale: 4, default: "0.0", null: false
|
772
|
+
t.decimal "additional_tax_total", precision: 12, scale: 4, default: "0.0", null: false
|
773
|
+
t.string "reception_status"
|
774
|
+
t.string "acceptance_status"
|
775
|
+
t.bigint "customer_return_id"
|
776
|
+
t.bigint "reimbursement_id"
|
777
|
+
t.text "acceptance_status_errors"
|
778
|
+
t.bigint "preferred_reimbursement_type_id"
|
779
|
+
t.bigint "override_reimbursement_type_id"
|
780
|
+
t.boolean "resellable", default: true, null: false
|
781
|
+
t.index ["customer_return_id"], name: "index_return_items_on_customer_return_id"
|
782
|
+
t.index ["exchange_variant_id"], name: "index_spree_return_items_on_exchange_variant_id"
|
783
|
+
t.index ["inventory_unit_id"], name: "index_spree_return_items_on_inventory_unit_id"
|
784
|
+
t.index ["override_reimbursement_type_id"], name: "index_spree_return_items_on_override_reimbursement_type_id"
|
785
|
+
t.index ["preferred_reimbursement_type_id"], name: "index_spree_return_items_on_preferred_reimbursement_type_id"
|
786
|
+
t.index ["reimbursement_id"], name: "index_spree_return_items_on_reimbursement_id"
|
787
|
+
t.index ["return_authorization_id"], name: "index_spree_return_items_on_return_authorization_id"
|
788
|
+
end
|
789
|
+
|
790
|
+
create_table "spree_role_users", force: :cascade do |t|
|
791
|
+
t.bigint "role_id"
|
792
|
+
t.bigint "user_id"
|
793
|
+
t.datetime "created_at"
|
794
|
+
t.datetime "updated_at"
|
795
|
+
t.index ["role_id"], name: "index_spree_role_users_on_role_id"
|
796
|
+
t.index ["user_id"], name: "index_spree_role_users_on_user_id"
|
797
|
+
end
|
798
|
+
|
799
|
+
create_table "spree_roles", force: :cascade do |t|
|
800
|
+
t.string "name"
|
801
|
+
t.datetime "created_at"
|
802
|
+
t.datetime "updated_at"
|
803
|
+
t.index ["name"], name: "index_spree_roles_on_name", unique: true
|
804
|
+
end
|
805
|
+
|
806
|
+
create_table "spree_shipments", force: :cascade do |t|
|
807
|
+
t.string "tracking"
|
808
|
+
t.string "number"
|
809
|
+
t.decimal "cost", precision: 10, scale: 2, default: "0.0"
|
810
|
+
t.datetime "shipped_at"
|
811
|
+
t.bigint "order_id"
|
812
|
+
t.bigint "address_id"
|
813
|
+
t.string "state"
|
814
|
+
t.datetime "created_at", precision: 6, null: false
|
815
|
+
t.datetime "updated_at", precision: 6, null: false
|
816
|
+
t.bigint "stock_location_id"
|
817
|
+
t.decimal "adjustment_total", precision: 10, scale: 2, default: "0.0"
|
818
|
+
t.decimal "additional_tax_total", precision: 10, scale: 2, default: "0.0"
|
819
|
+
t.decimal "promo_total", precision: 10, scale: 2, default: "0.0"
|
820
|
+
t.decimal "included_tax_total", precision: 10, scale: 2, default: "0.0", null: false
|
821
|
+
t.decimal "pre_tax_amount", precision: 12, scale: 4, default: "0.0", null: false
|
822
|
+
t.decimal "taxable_adjustment_total", precision: 10, scale: 2, default: "0.0", null: false
|
823
|
+
t.decimal "non_taxable_adjustment_total", precision: 10, scale: 2, default: "0.0", null: false
|
824
|
+
t.index ["address_id"], name: "index_spree_shipments_on_address_id"
|
825
|
+
t.index ["number"], name: "index_spree_shipments_on_number", unique: true
|
826
|
+
t.index ["order_id"], name: "index_spree_shipments_on_order_id"
|
827
|
+
t.index ["stock_location_id"], name: "index_spree_shipments_on_stock_location_id"
|
828
|
+
end
|
829
|
+
|
830
|
+
create_table "spree_shipping_categories", force: :cascade do |t|
|
831
|
+
t.string "name"
|
832
|
+
t.datetime "created_at", precision: 6, null: false
|
833
|
+
t.datetime "updated_at", precision: 6, null: false
|
834
|
+
t.index ["name"], name: "index_spree_shipping_categories_on_name"
|
835
|
+
end
|
836
|
+
|
837
|
+
create_table "spree_shipping_method_categories", force: :cascade do |t|
|
838
|
+
t.bigint "shipping_method_id", null: false
|
839
|
+
t.bigint "shipping_category_id", null: false
|
840
|
+
t.datetime "created_at", precision: 6, null: false
|
841
|
+
t.datetime "updated_at", precision: 6, null: false
|
842
|
+
t.index ["shipping_category_id", "shipping_method_id"], name: "unique_spree_shipping_method_categories", unique: true
|
843
|
+
t.index ["shipping_category_id"], name: "index_spree_shipping_method_categories_on_shipping_category_id"
|
844
|
+
t.index ["shipping_method_id"], name: "index_spree_shipping_method_categories_on_shipping_method_id"
|
845
|
+
end
|
846
|
+
|
847
|
+
create_table "spree_shipping_method_zones", force: :cascade do |t|
|
848
|
+
t.bigint "shipping_method_id"
|
849
|
+
t.bigint "zone_id"
|
850
|
+
t.datetime "created_at"
|
851
|
+
t.datetime "updated_at"
|
852
|
+
t.index ["shipping_method_id"], name: "index_spree_shipping_method_zones_on_shipping_method_id"
|
853
|
+
t.index ["zone_id"], name: "index_spree_shipping_method_zones_on_zone_id"
|
854
|
+
end
|
855
|
+
|
856
|
+
create_table "spree_shipping_methods", force: :cascade do |t|
|
857
|
+
t.string "name"
|
858
|
+
t.string "display_on"
|
859
|
+
t.datetime "deleted_at"
|
860
|
+
t.datetime "created_at", precision: 6, null: false
|
861
|
+
t.datetime "updated_at", precision: 6, null: false
|
862
|
+
t.string "tracking_url"
|
863
|
+
t.string "admin_name"
|
864
|
+
t.bigint "tax_category_id"
|
865
|
+
t.string "code"
|
866
|
+
t.index ["deleted_at"], name: "index_spree_shipping_methods_on_deleted_at"
|
867
|
+
t.index ["tax_category_id"], name: "index_spree_shipping_methods_on_tax_category_id"
|
868
|
+
end
|
869
|
+
|
870
|
+
create_table "spree_shipping_rates", force: :cascade do |t|
|
871
|
+
t.bigint "shipment_id"
|
872
|
+
t.bigint "shipping_method_id"
|
873
|
+
t.boolean "selected", default: false
|
874
|
+
t.decimal "cost", precision: 8, scale: 2, default: "0.0"
|
875
|
+
t.datetime "created_at", precision: 6, null: false
|
876
|
+
t.datetime "updated_at", precision: 6, null: false
|
877
|
+
t.bigint "tax_rate_id"
|
878
|
+
t.index ["selected"], name: "index_spree_shipping_rates_on_selected"
|
879
|
+
t.index ["shipment_id", "shipping_method_id"], name: "spree_shipping_rates_join_index", unique: true
|
880
|
+
t.index ["shipment_id"], name: "index_spree_shipping_rates_on_shipment_id"
|
881
|
+
t.index ["shipping_method_id"], name: "index_spree_shipping_rates_on_shipping_method_id"
|
882
|
+
t.index ["tax_rate_id"], name: "index_spree_shipping_rates_on_tax_rate_id"
|
883
|
+
end
|
884
|
+
|
885
|
+
create_table "spree_state_changes", force: :cascade do |t|
|
886
|
+
t.string "name"
|
887
|
+
t.string "previous_state"
|
888
|
+
t.bigint "stateful_id"
|
889
|
+
t.bigint "user_id"
|
890
|
+
t.string "stateful_type"
|
891
|
+
t.string "next_state"
|
892
|
+
t.datetime "created_at", precision: 6, null: false
|
893
|
+
t.datetime "updated_at", precision: 6, null: false
|
894
|
+
t.index ["stateful_id", "stateful_type"], name: "index_spree_state_changes_on_stateful_id_and_stateful_type"
|
895
|
+
end
|
896
|
+
|
897
|
+
create_table "spree_states", force: :cascade do |t|
|
898
|
+
t.string "name"
|
899
|
+
t.string "abbr"
|
900
|
+
t.bigint "country_id"
|
901
|
+
t.datetime "updated_at"
|
902
|
+
t.datetime "created_at"
|
903
|
+
t.index ["country_id"], name: "index_spree_states_on_country_id"
|
904
|
+
end
|
905
|
+
|
906
|
+
create_table "spree_stock_items", force: :cascade do |t|
|
907
|
+
t.bigint "stock_location_id"
|
908
|
+
t.bigint "variant_id"
|
909
|
+
t.integer "count_on_hand", default: 0, null: false
|
910
|
+
t.datetime "created_at", precision: 6, null: false
|
911
|
+
t.datetime "updated_at", precision: 6, null: false
|
912
|
+
t.boolean "backorderable", default: false
|
913
|
+
t.datetime "deleted_at"
|
914
|
+
t.index ["backorderable"], name: "index_spree_stock_items_on_backorderable"
|
915
|
+
t.index ["deleted_at"], name: "index_spree_stock_items_on_deleted_at"
|
916
|
+
t.index ["stock_location_id", "variant_id"], name: "stock_item_by_loc_and_var_id"
|
917
|
+
t.index ["stock_location_id"], name: "index_spree_stock_items_on_stock_location_id"
|
918
|
+
t.index ["variant_id"], name: "index_spree_stock_items_on_variant_id"
|
919
|
+
end
|
920
|
+
|
921
|
+
create_table "spree_stock_locations", force: :cascade do |t|
|
922
|
+
t.string "name"
|
923
|
+
t.datetime "created_at", precision: 6, null: false
|
924
|
+
t.datetime "updated_at", precision: 6, null: false
|
925
|
+
t.boolean "default", default: false, null: false
|
926
|
+
t.string "address1"
|
927
|
+
t.string "address2"
|
928
|
+
t.string "city"
|
929
|
+
t.bigint "state_id"
|
930
|
+
t.string "state_name"
|
931
|
+
t.bigint "country_id"
|
932
|
+
t.string "zipcode"
|
933
|
+
t.string "phone"
|
934
|
+
t.boolean "active", default: true
|
935
|
+
t.boolean "backorderable_default", default: false
|
936
|
+
t.boolean "propagate_all_variants", default: true
|
937
|
+
t.string "admin_name"
|
938
|
+
t.index ["active"], name: "index_spree_stock_locations_on_active"
|
939
|
+
t.index ["backorderable_default"], name: "index_spree_stock_locations_on_backorderable_default"
|
940
|
+
t.index ["country_id"], name: "index_spree_stock_locations_on_country_id"
|
941
|
+
t.index ["propagate_all_variants"], name: "index_spree_stock_locations_on_propagate_all_variants"
|
942
|
+
t.index ["state_id"], name: "index_spree_stock_locations_on_state_id"
|
943
|
+
end
|
944
|
+
|
945
|
+
create_table "spree_stock_movements", force: :cascade do |t|
|
946
|
+
t.bigint "stock_item_id"
|
947
|
+
t.integer "quantity", default: 0
|
948
|
+
t.string "action"
|
949
|
+
t.datetime "created_at", precision: 6, null: false
|
950
|
+
t.datetime "updated_at", precision: 6, null: false
|
951
|
+
t.string "originator_type"
|
952
|
+
t.bigint "originator_id"
|
953
|
+
t.index ["originator_id", "originator_type"], name: "index_stock_movements_on_originator_id_and_originator_type"
|
954
|
+
t.index ["stock_item_id"], name: "index_spree_stock_movements_on_stock_item_id"
|
955
|
+
end
|
956
|
+
|
957
|
+
create_table "spree_stock_transfers", force: :cascade do |t|
|
958
|
+
t.string "type"
|
959
|
+
t.string "reference"
|
960
|
+
t.bigint "source_location_id"
|
961
|
+
t.bigint "destination_location_id"
|
962
|
+
t.datetime "created_at", precision: 6, null: false
|
963
|
+
t.datetime "updated_at", precision: 6, null: false
|
964
|
+
t.string "number"
|
965
|
+
t.index ["destination_location_id"], name: "index_spree_stock_transfers_on_destination_location_id"
|
966
|
+
t.index ["number"], name: "index_spree_stock_transfers_on_number", unique: true
|
967
|
+
t.index ["source_location_id"], name: "index_spree_stock_transfers_on_source_location_id"
|
968
|
+
end
|
969
|
+
|
970
|
+
create_table "spree_store_credit_categories", force: :cascade do |t|
|
971
|
+
t.string "name"
|
972
|
+
t.datetime "created_at", precision: 6, null: false
|
973
|
+
t.datetime "updated_at", precision: 6, null: false
|
974
|
+
end
|
975
|
+
|
976
|
+
create_table "spree_store_credit_events", force: :cascade do |t|
|
977
|
+
t.bigint "store_credit_id", null: false
|
978
|
+
t.string "action", null: false
|
979
|
+
t.decimal "amount", precision: 8, scale: 2
|
980
|
+
t.string "authorization_code", null: false
|
981
|
+
t.decimal "user_total_amount", precision: 8, scale: 2, default: "0.0", null: false
|
982
|
+
t.bigint "originator_id"
|
983
|
+
t.string "originator_type"
|
984
|
+
t.datetime "deleted_at"
|
985
|
+
t.datetime "created_at", precision: 6, null: false
|
986
|
+
t.datetime "updated_at", precision: 6, null: false
|
987
|
+
t.index ["originator_id", "originator_type"], name: "spree_store_credit_events_originator"
|
988
|
+
t.index ["store_credit_id"], name: "index_spree_store_credit_events_on_store_credit_id"
|
989
|
+
end
|
990
|
+
|
991
|
+
create_table "spree_store_credit_types", force: :cascade do |t|
|
992
|
+
t.string "name"
|
993
|
+
t.integer "priority"
|
994
|
+
t.datetime "created_at", precision: 6, null: false
|
995
|
+
t.datetime "updated_at", precision: 6, null: false
|
996
|
+
t.index ["priority"], name: "index_spree_store_credit_types_on_priority"
|
997
|
+
end
|
998
|
+
|
999
|
+
create_table "spree_store_credits", force: :cascade do |t|
|
1000
|
+
t.bigint "user_id"
|
1001
|
+
t.bigint "category_id"
|
1002
|
+
t.bigint "created_by_id"
|
1003
|
+
t.decimal "amount", precision: 8, scale: 2, default: "0.0", null: false
|
1004
|
+
t.decimal "amount_used", precision: 8, scale: 2, default: "0.0", null: false
|
1005
|
+
t.text "memo"
|
1006
|
+
t.datetime "deleted_at"
|
1007
|
+
t.string "currency"
|
1008
|
+
t.decimal "amount_authorized", precision: 8, scale: 2, default: "0.0", null: false
|
1009
|
+
t.bigint "originator_id"
|
1010
|
+
t.string "originator_type"
|
1011
|
+
t.bigint "type_id"
|
1012
|
+
t.datetime "created_at", precision: 6, null: false
|
1013
|
+
t.datetime "updated_at", precision: 6, null: false
|
1014
|
+
t.bigint "store_id"
|
1015
|
+
t.index ["deleted_at"], name: "index_spree_store_credits_on_deleted_at"
|
1016
|
+
t.index ["originator_id", "originator_type"], name: "spree_store_credits_originator"
|
1017
|
+
t.index ["store_id"], name: "index_spree_store_credits_on_store_id"
|
1018
|
+
t.index ["type_id"], name: "index_spree_store_credits_on_type_id"
|
1019
|
+
t.index ["user_id"], name: "index_spree_store_credits_on_user_id"
|
1020
|
+
end
|
1021
|
+
|
1022
|
+
create_table "spree_stores", force: :cascade do |t|
|
1023
|
+
t.string "name"
|
1024
|
+
t.string "url"
|
1025
|
+
t.text "meta_description"
|
1026
|
+
t.text "meta_keywords"
|
1027
|
+
t.string "seo_title"
|
1028
|
+
t.string "mail_from_address"
|
1029
|
+
t.string "default_currency"
|
1030
|
+
t.string "code"
|
1031
|
+
t.boolean "default", default: false, null: false
|
1032
|
+
t.datetime "created_at", precision: 6, null: false
|
1033
|
+
t.datetime "updated_at", precision: 6, null: false
|
1034
|
+
t.string "supported_currencies"
|
1035
|
+
t.string "facebook"
|
1036
|
+
t.string "twitter"
|
1037
|
+
t.string "instagram"
|
1038
|
+
t.string "default_locale"
|
1039
|
+
t.string "customer_support_email"
|
1040
|
+
t.bigint "default_country_id"
|
1041
|
+
t.text "description"
|
1042
|
+
t.text "address"
|
1043
|
+
t.string "contact_phone"
|
1044
|
+
t.string "new_order_notifications_email"
|
1045
|
+
t.bigint "checkout_zone_id"
|
1046
|
+
t.string "seo_robots"
|
1047
|
+
t.string "supported_locales"
|
1048
|
+
t.index ["code"], name: "index_spree_stores_on_code", unique: true
|
1049
|
+
t.index ["default"], name: "index_spree_stores_on_default"
|
1050
|
+
t.index ["url"], name: "index_spree_stores_on_url"
|
1051
|
+
end
|
1052
|
+
|
1053
|
+
create_table "spree_tax_categories", force: :cascade do |t|
|
1054
|
+
t.string "name"
|
1055
|
+
t.string "description"
|
1056
|
+
t.boolean "is_default", default: false
|
1057
|
+
t.datetime "deleted_at"
|
1058
|
+
t.datetime "created_at", precision: 6, null: false
|
1059
|
+
t.datetime "updated_at", precision: 6, null: false
|
1060
|
+
t.string "tax_code"
|
1061
|
+
t.index ["deleted_at"], name: "index_spree_tax_categories_on_deleted_at"
|
1062
|
+
t.index ["is_default"], name: "index_spree_tax_categories_on_is_default"
|
1063
|
+
end
|
1064
|
+
|
1065
|
+
create_table "spree_tax_rates", force: :cascade do |t|
|
1066
|
+
t.decimal "amount", precision: 8, scale: 5
|
1067
|
+
t.bigint "zone_id"
|
1068
|
+
t.bigint "tax_category_id"
|
1069
|
+
t.boolean "included_in_price", default: false
|
1070
|
+
t.datetime "created_at", precision: 6, null: false
|
1071
|
+
t.datetime "updated_at", precision: 6, null: false
|
1072
|
+
t.string "name"
|
1073
|
+
t.boolean "show_rate_in_label", default: true
|
1074
|
+
t.datetime "deleted_at"
|
1075
|
+
t.index ["deleted_at"], name: "index_spree_tax_rates_on_deleted_at"
|
1076
|
+
t.index ["included_in_price"], name: "index_spree_tax_rates_on_included_in_price"
|
1077
|
+
t.index ["show_rate_in_label"], name: "index_spree_tax_rates_on_show_rate_in_label"
|
1078
|
+
t.index ["tax_category_id"], name: "index_spree_tax_rates_on_tax_category_id"
|
1079
|
+
t.index ["zone_id"], name: "index_spree_tax_rates_on_zone_id"
|
1080
|
+
end
|
1081
|
+
|
1082
|
+
create_table "spree_taxonomies", force: :cascade do |t|
|
1083
|
+
t.string "name", null: false
|
1084
|
+
t.datetime "created_at", precision: 6, null: false
|
1085
|
+
t.datetime "updated_at", precision: 6, null: false
|
1086
|
+
t.integer "position", default: 0
|
1087
|
+
t.bigint "store_id"
|
1088
|
+
t.index ["name", "store_id"], name: "index_spree_taxonomies_on_name_and_store_id", unique: true
|
1089
|
+
t.index ["position"], name: "index_spree_taxonomies_on_position"
|
1090
|
+
t.index ["store_id"], name: "index_spree_taxonomies_on_store_id"
|
1091
|
+
end
|
1092
|
+
|
1093
|
+
create_table "spree_taxons", force: :cascade do |t|
|
1094
|
+
t.bigint "parent_id"
|
1095
|
+
t.integer "position", default: 0
|
1096
|
+
t.string "name", null: false
|
1097
|
+
t.string "permalink"
|
1098
|
+
t.bigint "taxonomy_id"
|
1099
|
+
t.bigint "lft"
|
1100
|
+
t.bigint "rgt"
|
1101
|
+
t.text "description"
|
1102
|
+
t.datetime "created_at", precision: 6, null: false
|
1103
|
+
t.datetime "updated_at", precision: 6, null: false
|
1104
|
+
t.string "meta_title"
|
1105
|
+
t.string "meta_description"
|
1106
|
+
t.string "meta_keywords"
|
1107
|
+
t.integer "depth"
|
1108
|
+
t.boolean "hide_from_nav", default: false
|
1109
|
+
t.index ["lft"], name: "index_spree_taxons_on_lft"
|
1110
|
+
t.index ["name", "parent_id", "taxonomy_id"], name: "index_spree_taxons_on_name_and_parent_id_and_taxonomy_id", unique: true
|
1111
|
+
t.index ["name"], name: "index_spree_taxons_on_name"
|
1112
|
+
t.index ["parent_id"], name: "index_taxons_on_parent_id"
|
1113
|
+
t.index ["permalink", "parent_id", "taxonomy_id"], name: "index_spree_taxons_on_permalink_and_parent_id_and_taxonomy_id", unique: true
|
1114
|
+
t.index ["permalink"], name: "index_taxons_on_permalink"
|
1115
|
+
t.index ["position"], name: "index_spree_taxons_on_position"
|
1116
|
+
t.index ["rgt"], name: "index_spree_taxons_on_rgt"
|
1117
|
+
t.index ["taxonomy_id"], name: "index_taxons_on_taxonomy_id"
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
create_table "spree_trackers", force: :cascade do |t|
|
1121
|
+
t.string "analytics_id"
|
1122
|
+
t.boolean "active", default: true
|
1123
|
+
t.datetime "created_at", precision: 6, null: false
|
1124
|
+
t.datetime "updated_at", precision: 6, null: false
|
1125
|
+
t.integer "engine", default: 0, null: false
|
1126
|
+
t.index ["active"], name: "index_spree_trackers_on_active"
|
1127
|
+
end
|
1128
|
+
|
1129
|
+
create_table "spree_users", force: :cascade do |t|
|
1130
|
+
t.string "encrypted_password", limit: 128
|
1131
|
+
t.string "password_salt", limit: 128
|
1132
|
+
t.string "email"
|
1133
|
+
t.string "remember_token"
|
1134
|
+
t.string "persistence_token"
|
1135
|
+
t.string "reset_password_token"
|
1136
|
+
t.string "perishable_token"
|
1137
|
+
t.integer "sign_in_count", default: 0, null: false
|
1138
|
+
t.integer "failed_attempts", default: 0, null: false
|
1139
|
+
t.datetime "last_request_at"
|
1140
|
+
t.datetime "current_sign_in_at"
|
1141
|
+
t.datetime "last_sign_in_at"
|
1142
|
+
t.string "current_sign_in_ip"
|
1143
|
+
t.string "last_sign_in_ip"
|
1144
|
+
t.string "login"
|
1145
|
+
t.bigint "ship_address_id"
|
1146
|
+
t.bigint "bill_address_id"
|
1147
|
+
t.string "authentication_token"
|
1148
|
+
t.string "unlock_token"
|
1149
|
+
t.datetime "locked_at"
|
1150
|
+
t.datetime "remember_created_at"
|
1151
|
+
t.datetime "reset_password_sent_at"
|
1152
|
+
t.datetime "created_at", precision: 6, null: false
|
1153
|
+
t.datetime "updated_at", precision: 6, null: false
|
1154
|
+
end
|
1155
|
+
|
1156
|
+
create_table "spree_variants", force: :cascade do |t|
|
1157
|
+
t.string "sku", default: "", null: false
|
1158
|
+
t.decimal "weight", precision: 8, scale: 2, default: "0.0"
|
1159
|
+
t.decimal "height", precision: 8, scale: 2
|
1160
|
+
t.decimal "width", precision: 8, scale: 2
|
1161
|
+
t.decimal "depth", precision: 8, scale: 2
|
1162
|
+
t.datetime "deleted_at"
|
1163
|
+
t.boolean "is_master", default: false
|
1164
|
+
t.bigint "product_id"
|
1165
|
+
t.decimal "cost_price", precision: 10, scale: 2
|
1166
|
+
t.integer "position"
|
1167
|
+
t.string "cost_currency"
|
1168
|
+
t.boolean "track_inventory", default: true
|
1169
|
+
t.bigint "tax_category_id"
|
1170
|
+
t.datetime "updated_at", null: false
|
1171
|
+
t.datetime "discontinue_on"
|
1172
|
+
t.datetime "created_at", null: false
|
1173
|
+
t.index ["deleted_at"], name: "index_spree_variants_on_deleted_at"
|
1174
|
+
t.index ["discontinue_on"], name: "index_spree_variants_on_discontinue_on"
|
1175
|
+
t.index ["is_master"], name: "index_spree_variants_on_is_master"
|
1176
|
+
t.index ["position"], name: "index_spree_variants_on_position"
|
1177
|
+
t.index ["product_id"], name: "index_spree_variants_on_product_id"
|
1178
|
+
t.index ["sku"], name: "index_spree_variants_on_sku"
|
1179
|
+
t.index ["tax_category_id"], name: "index_spree_variants_on_tax_category_id"
|
1180
|
+
t.index ["track_inventory"], name: "index_spree_variants_on_track_inventory"
|
1181
|
+
end
|
1182
|
+
|
1183
|
+
create_table "spree_zone_members", force: :cascade do |t|
|
1184
|
+
t.string "zoneable_type"
|
1185
|
+
t.bigint "zoneable_id"
|
1186
|
+
t.bigint "zone_id"
|
1187
|
+
t.datetime "created_at", precision: 6, null: false
|
1188
|
+
t.datetime "updated_at", precision: 6, null: false
|
1189
|
+
t.index ["zone_id"], name: "index_spree_zone_members_on_zone_id"
|
1190
|
+
t.index ["zoneable_id", "zoneable_type"], name: "index_spree_zone_members_on_zoneable_id_and_zoneable_type"
|
1191
|
+
end
|
1192
|
+
|
1193
|
+
create_table "spree_zones", force: :cascade do |t|
|
1194
|
+
t.string "name"
|
1195
|
+
t.string "description"
|
1196
|
+
t.boolean "default_tax", default: false
|
1197
|
+
t.integer "zone_members_count", default: 0
|
1198
|
+
t.datetime "created_at", precision: 6, null: false
|
1199
|
+
t.datetime "updated_at", precision: 6, null: false
|
1200
|
+
t.string "kind", default: "state"
|
1201
|
+
t.index ["default_tax"], name: "index_spree_zones_on_default_tax"
|
1202
|
+
t.index ["kind"], name: "index_spree_zones_on_kind"
|
1203
|
+
end
|
1204
|
+
end
|
1205
|
+
end
|