spree_flat_in_range 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +26 -0
- data/README.md +39 -0
- data/app/models/spree/calculator/flat_in_range.rb +21 -0
- data/config/locales/en.yml +5 -0
- data/lib/spree_flat_in_range.rb +21 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/admin/all.js +10 -0
- data/spec/dummy/app/assets/javascripts/application.js +9 -0
- data/spec/dummy/app/assets/javascripts/store/all.js +10 -0
- data/spec/dummy/app/assets/stylesheets/admin/all.css +11 -0
- data/spec/dummy/app/assets/stylesheets/application.css +7 -0
- data/spec/dummy/app/assets/stylesheets/store/all.css +11 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +60 -0
- data/spec/dummy/config/boot.rb +6 -0
- data/spec/dummy/config/database.yml +18 -0
- data/spec/dummy/config/environment.rb +7 -0
- data/spec/dummy/config/environments/development.rb +30 -0
- data/spec/dummy/config/environments/production.rb +60 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +10 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/spree.rb +12 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/config/spree.yml +2 -0
- data/spec/dummy/db/dummy_test +0 -0
- data/spec/dummy/db/migrate/20120218160357_spree_zero_nine_zero.rb +389 -0
- data/spec/dummy/db/migrate/20120218160358_create_indexes_for_inventory_units.rb +6 -0
- data/spec/dummy/db/migrate/20120218160359_add_count_on_hand_to_variants_and_products.rb +49 -0
- data/spec/dummy/db/migrate/20120218160360_change_taxons_to_nested_set.rb +46 -0
- data/spec/dummy/db/migrate/20120218160361_move_to_configurable_gateways.rb +54 -0
- data/spec/dummy/db/migrate/20120218160362_product_groups_and_scopes.rb +18 -0
- data/spec/dummy/db/migrate/20120218160363_add_open_id_authentication_tables.rb +15 -0
- data/spec/dummy/db/migrate/20120218160364_add_openid_field_to_users.rb +24 -0
- data/spec/dummy/db/migrate/20120218160365_change_preference_value_type.rb +10 -0
- data/spec/dummy/db/migrate/20120218160366_create_billing_integrations.rb +12 -0
- data/spec/dummy/db/migrate/20120218160367_charge_refactoring.rb +39 -0
- data/spec/dummy/db/migrate/20120218160368_add_some_indexes.rb +11 -0
- data/spec/dummy/db/migrate/20120218160369_checkout_state_machine.rb +5 -0
- data/spec/dummy/db/migrate/20120218160370_state_for_shipments.rb +5 -0
- data/spec/dummy/db/migrate/20120218160371_make_state_events_polymorphic.rb +12 -0
- data/spec/dummy/db/migrate/20120218160372_ship_address_id_for_checkouts.rb +5 -0
- data/spec/dummy/db/migrate/20120218160373_shipping_method_id_for_checkouts.rb +5 -0
- data/spec/dummy/db/migrate/20120218160374_creditcard_last_four_digits.rb +14 -0
- data/spec/dummy/db/migrate/20120218160375_populate_legacy_shipment_state.rb +15 -0
- data/spec/dummy/db/migrate/20120218160376_add_cost_price.rb +5 -0
- data/spec/dummy/db/migrate/20120218160377_shipment_id_for_inventory_units.rb +25 -0
- data/spec/dummy/db/migrate/20120218160378_cim_fields_for_creditcards.rb +6 -0
- data/spec/dummy/db/migrate/20120218160379_create_return_authorizations.rb +12 -0
- data/spec/dummy/db/migrate/20120218160380_add_return_authorization_to_inventory_units.rb +5 -0
- data/spec/dummy/db/migrate/20120218160381_create_trackers.rb +10 -0
- data/spec/dummy/db/migrate/20120218160382_creditcard_id_for_creditcard_txns.rb +5 -0
- data/spec/dummy/db/migrate/20120218160383_original_creditcard_txn_id_for_creditcard_txns.rb +5 -0
- data/spec/dummy/db/migrate/20120218160384_add_test_mode_to_billing_integration.rb +6 -0
- data/spec/dummy/db/migrate/20120218160385_create_products_product_groups.rb +8 -0
- data/spec/dummy/db/migrate/20120218160386_create_payment_methods.rb +16 -0
- data/spec/dummy/db/migrate/20120218160387_polymorphic_payments.rb +42 -0
- data/spec/dummy/db/migrate/20120218160388_change_payments_payment_method_to_belongs_to.rb +11 -0
- data/spec/dummy/db/migrate/20120218160389_assign_creditcard_txns_to_payment.rb +23 -0
- data/spec/dummy/db/migrate/20120218160390_sti_for_transactions.rb +15 -0
- data/spec/dummy/db/migrate/20120218160391_drop_billing_integrations.rb +16 -0
- data/spec/dummy/db/migrate/20120218160392_deleted_at_for_payment_methods.rb +14 -0
- data/spec/dummy/db/migrate/20120218160393_add_adjustments_index.rb +6 -0
- data/spec/dummy/db/migrate/20120218160394_fix_by_popularity.rb +9 -0
- data/spec/dummy/db/migrate/20120218160395_add_alt_text_to_images.rb +5 -0
- data/spec/dummy/db/migrate/20120218160396_fix_existing_coupon_credits.rb +13 -0
- data/spec/dummy/db/migrate/20120218160397_add_display_to_payment_methods.rb +5 -0
- data/spec/dummy/db/migrate/20120218160398_add_addresses_checkouts_indexes.rb +8 -0
- data/spec/dummy/db/migrate/20120218160399_add_icon_to_taxons.rb +17 -0
- data/spec/dummy/db/migrate/20120218160400_add_description_to_taxons.rb +11 -0
- data/spec/dummy/db/migrate/20120218160401_index_for_shipments_number.rb +5 -0
- data/spec/dummy/db/migrate/20120218160402_add_index_on_users_persistence_token.rb +5 -0
- data/spec/dummy/db/migrate/20120218160403_add_default_to_tax_categories.rb +5 -0
- data/spec/dummy/db/migrate/20120218160404_add_display_to_shipping_methods.rb +5 -0
- data/spec/dummy/db/migrate/20120218160405_rename_payment_method_display.rb +5 -0
- data/spec/dummy/db/migrate/20120218160406_rename_preferences_field.rb +5 -0
- data/spec/dummy/db/migrate/20120218160407_add_guest_flag.rb +5 -0
- data/spec/dummy/db/migrate/20120218160408_drop_order_token.rb +9 -0
- data/spec/dummy/db/migrate/20120218160409_payments_state_and_assigned_to_order_only.rb +14 -0
- data/spec/dummy/db/migrate/20120218160410_create_address_keys_for_order.rb +6 -0
- data/spec/dummy/db/migrate/20120218160411_payment_total_for_orders.rb +5 -0
- data/spec/dummy/db/migrate/20120218160412_shipping_method_id_for_orders.rb +5 -0
- data/spec/dummy/db/migrate/20120218160413_add_shipment_and_payment_state.rb +6 -0
- data/spec/dummy/db/migrate/20120218160414_refactor_adjustments.rb +29 -0
- data/spec/dummy/db/migrate/20120218160415_response_code_and_avs_response_for_payments.rb +6 -0
- data/spec/dummy/db/migrate/20120218160416_change_guest_flag_to_anonymous.rb +5 -0
- data/spec/dummy/db/migrate/20120218160417_email_for_orders.rb +5 -0
- data/spec/dummy/db/migrate/20120218160418_create_mail_methods.rb +10 -0
- data/spec/dummy/db/migrate/20120218160419_rename_frozen_to_locked.rb +5 -0
- data/spec/dummy/db/migrate/20120218160420_move_special_instructions_to_orders.rb +10 -0
- data/spec/dummy/db/migrate/20120218160421_create_log_entries.rb +11 -0
- data/spec/dummy/db/migrate/20120218160422_migrate_transactions_to_payment_state.rb +98 -0
- data/spec/dummy/db/migrate/20120218160423_delete_in_progress_orders.rb +19 -0
- data/spec/dummy/db/migrate/20120218160424_migrate_checkout_to_orders.rb +23 -0
- data/spec/dummy/db/migrate/20120218160425_remove_shipped_state.rb +12 -0
- data/spec/dummy/db/migrate/20120218160426_prevent_nil_payment_total.rb +8 -0
- data/spec/dummy/db/migrate/20120218160427_prevent_nil_email.rb +9 -0
- data/spec/dummy/db/migrate/20120218160428_generate_anonymous_users.rb +20 -0
- data/spec/dummy/db/migrate/20120218160429_update_order_state.rb +12 -0
- data/spec/dummy/db/migrate/20120218160430_cleanup_legacy_tables.rb +11 -0
- data/spec/dummy/db/migrate/20120218160431_remove_number_and_cvv_from_credicard.rb +11 -0
- data/spec/dummy/db/migrate/20120218160432_drop_anonymous_field_for_user.rb +9 -0
- data/spec/dummy/db/migrate/20120218160433_renamed_rma_cancelled_state.rb +9 -0
- data/spec/dummy/db/migrate/20120218160434_fix_problematic_index_names.rb +13 -0
- data/spec/dummy/db/migrate/20120218160435_add_position_to_variants.rb +5 -0
- data/spec/dummy/db/migrate/20120218160436_add_next_state_to_state_events.rb +5 -0
- data/spec/dummy/db/migrate/20120218160437_add_position_to_option_types.rb +5 -0
- data/spec/dummy/db/migrate/20120218160438_remove_trailing_slashes_in_taxon_permalinks.rb +19 -0
- data/spec/dummy/db/migrate/20120218160439_create_activators.rb +14 -0
- data/spec/dummy/db/migrate/20120218160440_eligible_for_adjustments.rb +5 -0
- data/spec/dummy/db/migrate/20120218160441_namespace_top_level_models.rb +52 -0
- data/spec/dummy/db/migrate/20120218160442_migrate_namespaced_polymorphic_models.rb +52 -0
- data/spec/dummy/db/migrate/20120218160443_make_adjustments_polymorphic.rb +9 -0
- data/spec/dummy/db/migrate/20120218160444_add_company_to_addresses.rb +5 -0
- data/spec/dummy/db/migrate/20120218160445_add_inc_tax_to_tax_rates.rb +5 -0
- data/spec/dummy/db/migrate/20120218160446_rename_inc_price_attribute.rb +5 -0
- data/spec/dummy/db/migrate/20120218160447_add_default_tax_zone.rb +5 -0
- data/spec/dummy/db/migrate/20120218160448_associate_shipping_methods_and_shipping_categories.rb +7 -0
- data/spec/dummy/db/migrate/20120218160449_add_match_rules_to_shipping_methods.rb +7 -0
- data/spec/dummy/db/migrate/20120218160450_new_preferences.rb +48 -0
- data/spec/dummy/db/migrate/20120218160451_add_deleted_at_to_tax_category.rb +5 -0
- data/spec/dummy/db/schema.rb +553 -0
- data/spec/dummy/db/seeds.rb +11 -0
- data/spec/dummy/log/test.log +1136 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/dummy/spec/dummy/script/rails +6 -0
- data/spec/flat_in_range_spec.rb +56 -0
- data/spec/spec_helper.rb +32 -0
- metadata +428 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# This file should contain all the record creation needed to seed the database with its default values.
|
|
2
|
+
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
|
|
3
|
+
#
|
|
4
|
+
# Examples:
|
|
5
|
+
#
|
|
6
|
+
# cities = City.create([{ :name => 'Chicago' }, { :name => 'Copenhagen' }])
|
|
7
|
+
# Mayor.create(:name => 'Emanuel', :city => cities.first)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
Spree::Core::Engine.load_seed if defined?(Spree::Core)
|
|
11
|
+
Spree::Auth::Engine.load_seed if defined?(Spree::Auth)
|
|
@@ -0,0 +1,1136 @@
|
|
|
1
|
+
[1m[36m (0.4ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
2
|
+
SQLite3::SQLException: no such table: spree_preferences: select owner_id, owner_type, name, value from spree_preferences where `key` is null
|
|
3
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
4
|
+
[1m[36m (6.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
5
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("schema_migrations")
|
|
6
|
+
[1m[36m (2.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
7
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
8
|
+
Migrating to SpreeZeroNineZero (20120218160357)
|
|
9
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "firstname" varchar(255), "lastname" varchar(255), "address1" varchar(255), "address2" varchar(255), "city" varchar(255), "zipcode" varchar(255), "phone" varchar(255), "state_name" varchar(255), "alternative_phone" varchar(255), "state_id" integer, "country_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
|
10
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "adjustment_source_id" integer, "amount" decimal(8,2) DEFAULT 0.0 NOT NULL, "type" varchar(255), "description" varchar(255), "adjustment_source_type" varchar(255), "secondary_type" varchar(255), "order_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
11
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "viewable_id" integer, "attachment_width" integer, "attachment_height" integer, "attachment_size" integer, "position" integer, "viewable_type" varchar(50), "attachment_content_type" varchar(255), "attachment_file_name" varchar(255), "type" varchar(75), "attachment_updated_at" datetime) [0m
|
|
12
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "calculators" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "calculable_id" integer NOT NULL, "calculable_type" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime)
|
|
13
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "checkouts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "order_id" integer, "email" varchar(255), "ip_address" varchar(255), "special_instructions" text, "bill_address_id" integer, "completed_at" datetime, "created_at" datetime, "updated_at" datetime) [0m
|
|
14
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "type" varchar(50), "created_at" datetime, "updated_at" datetime)
|
|
15
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("configurations")[0m
|
|
16
|
+
[1m[35m (0.2ms)[0m CREATE INDEX "index_configurations_on_name_and_type" ON "configurations" ("name", "type")
|
|
17
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "iso_name" varchar(255), "iso" varchar(255), "iso3" varchar(255), "name" varchar(255), "numcode" integer) [0m
|
|
18
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "coupons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "code" varchar(255), "description" varchar(255), "usage_limit" integer, "combine" boolean, "expires_at" datetime, "starts_at" datetime, "created_at" datetime, "updated_at" datetime)
|
|
19
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "creditcard_txns" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "creditcard_payment_id" integer, "txn_type" integer, "amount" decimal(8,2) DEFAULT 0.0 NOT NULL, "response_code" varchar(255), "avs_response" text, "cvv_response" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
20
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "creditcards" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" text, "verification_value" text, "month" varchar(255), "year" varchar(255), "cc_type" varchar(255), "display_number" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "start_month" varchar(255), "start_year" varchar(255), "issue_number" varchar(255), "address_id" integer, "checkout_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
21
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "gateway_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "gateway_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
|
22
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "gateway_option_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "gateway_configuration_id" integer, "gateway_option_id" integer, "value" text, "created_at" datetime, "updated_at" datetime)
|
|
23
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "gateway_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "textarea" boolean DEFAULT 'f', "gateway_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
|
24
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "gateways" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "clazz" varchar(255), "name" varchar(255), "description" text, "active" boolean, "created_at" datetime, "updated_at" datetime)
|
|
25
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "inventory_units" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "lock_version" integer DEFAULT 0, "state" varchar(255), "variant_id" integer, "order_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
|
26
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "line_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "order_id" integer, "variant_id" integer, "quantity" integer NOT NULL, "price" decimal(8,2) NOT NULL, "created_at" datetime, "updated_at" datetime)
|
|
27
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("line_items")[0m
|
|
28
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_line_items_on_order_id" ON "line_items" ("order_id")
|
|
29
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("line_items")[0m
|
|
30
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_line_items_on_order_id')
|
|
31
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_line_items_on_variant_id" ON "line_items" ("variant_id")[0m
|
|
32
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "option_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100), "presentation" varchar(100), "created_at" datetime, "updated_at" datetime)
|
|
33
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "option_types_prototypes" ("prototype_id" integer, "option_type_id" integer) [0m
|
|
34
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "option_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "name" varchar(255), "presentation" varchar(255), "option_type_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
35
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "option_values_variants" ("variant_id" integer, "option_value_id" integer) [0m
|
|
36
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("option_values_variants")
|
|
37
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_option_values_variants_on_variant_id" ON "option_values_variants" ("variant_id")[0m
|
|
38
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "orders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(15), "item_total" decimal(8,2) DEFAULT 0.0 NOT NULL, "total" decimal(8,2) DEFAULT 0.0 NOT NULL, "state" varchar(255), "token" varchar(255), "adjustment_total" decimal(8,2) DEFAULT 0.0 NOT NULL, "credit_total" decimal(8,2) DEFAULT 0.0 NOT NULL, "user_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
39
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("orders")[0m
|
|
40
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_orders_on_number" ON "orders" ("number")
|
|
41
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal(8,2) DEFAULT 0.0 NOT NULL, "type" varchar(255), "order_id" integer, "creditcard_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
|
42
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attribute" varchar(100) NOT NULL, "owner_id" integer(30) NOT NULL, "owner_type" varchar(50) NOT NULL, "group_id" integer, "group_type" varchar(50), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
|
|
43
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("preferences")[0m
|
|
44
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_preferences_on_owner_and_attribute_and_preference" ON "preferences" ("owner_id", "owner_type", "attribute", "group_id", "group_type")
|
|
45
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "product_option_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "product_id" integer, "option_type_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
|
46
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "product_properties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "value" varchar(255), "product_id" integer, "property_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
47
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) DEFAULT '' NOT NULL, "description" text, "available_on" datetime, "deleted_at" datetime, "permalink" varchar(255), "meta_description" varchar(255), "meta_keywords" varchar(255), "tax_category_id" integer, "shipping_category_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
|
48
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("products")
|
|
49
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_products_on_available_on" ON "products" ("available_on")[0m
|
|
50
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("products")
|
|
51
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_products_on_available_on')[0m
|
|
52
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_products_on_deleted_at" ON "products" ("deleted_at")
|
|
53
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("products")[0m
|
|
54
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_products_on_deleted_at')
|
|
55
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_products_on_available_on')[0m
|
|
56
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_products_on_name" ON "products" ("name")
|
|
57
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("products")[0m
|
|
58
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_products_on_name')
|
|
59
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_products_on_deleted_at')[0m
|
|
60
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_products_on_available_on')
|
|
61
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_products_on_permalink" ON "products" ("permalink")[0m
|
|
62
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "products_taxons" ("product_id" integer, "taxon_id" integer)
|
|
63
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("products_taxons")[0m
|
|
64
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_products_taxons_on_product_id" ON "products_taxons" ("product_id")
|
|
65
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("products_taxons")[0m
|
|
66
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_products_taxons_on_product_id')
|
|
67
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_products_taxons_on_taxon_id" ON "products_taxons" ("taxon_id")[0m
|
|
68
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "properties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "presentation" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime)
|
|
69
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "properties_prototypes" ("prototype_id" integer, "property_id" integer) [0m
|
|
70
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "prototypes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime)
|
|
71
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) [0m
|
|
72
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "roles_users" ("role_id" integer, "user_id" integer)
|
|
73
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("roles_users")[0m
|
|
74
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_roles_users_on_role_id" ON "roles_users" ("role_id")
|
|
75
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("roles_users")[0m
|
|
76
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_roles_users_on_role_id')
|
|
77
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_roles_users_on_user_id" ON "roles_users" ("user_id")[0m
|
|
78
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "shipments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tracking" varchar(255), "number" varchar(255), "cost" decimal(8,2), "shipped_at" datetime, "order_id" integer, "shipping_method_id" integer, "address_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
79
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "shipping_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
|
80
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "shipping_methods" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "zone_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
81
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "state_events" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "previous_state" varchar(255), "order_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
|
82
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "states" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "abbr" varchar(255), "country_id" integer)
|
|
83
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "tax_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
|
84
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "tax_rates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal(8,4), "zone_id" integer, "tax_category_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
85
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "taxonomies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) [0m
|
|
86
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "taxons" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "position" integer DEFAULT 0, "name" varchar(255) NOT NULL, "permalink" varchar(255), "taxonomy_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
87
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "crypted_password" varchar(128) DEFAULT '' NOT NULL, "salt" varchar(128) DEFAULT '' NOT NULL, "email" varchar(255), "remember_token" varchar(255), "remember_token_expires_at" varchar(255), "persistence_token" varchar(255), "single_access_token" varchar(255), "perishable_token" varchar(255), "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime, "current_login_at" datetime, "last_login_at" datetime, "current_login_ip" varchar(255), "last_login_ip" varchar(255), "login" varchar(255), "ship_address_id" integer, "bill_address_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
|
88
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "variants" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "sku" varchar(255) DEFAULT '' NOT NULL, "price" decimal(8,2) NOT NULL, "weight" decimal(8,2), "height" decimal(8,2), "width" decimal(8,2), "depth" decimal(8,2), "deleted_at" datetime, "is_master" boolean DEFAULT 'f', "product_id" integer)
|
|
89
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("variants")[0m
|
|
90
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_variants_on_product_id" ON "variants" ("product_id")
|
|
91
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "zone_members" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "zoneable_id" integer, "zoneable_type" varchar(255), "zone_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
|
92
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" varchar(255), "created_at" datetime, "updated_at" datetime)
|
|
93
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160357')[0m
|
|
94
|
+
Migrating to CreateIndexesForInventoryUnits (20120218160358)
|
|
95
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("inventory_units")
|
|
96
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_inventory_units_on_variant_id" ON "inventory_units" ("variant_id")[0m
|
|
97
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("inventory_units")
|
|
98
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_info('index_inventory_units_on_variant_id')[0m
|
|
99
|
+
[1m[35m (0.3ms)[0m CREATE INDEX "index_inventory_units_on_order_id" ON "inventory_units" ("order_id")
|
|
100
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160358')[0m
|
|
101
|
+
Migrating to AddCountOnHandToVariantsAndProducts (20120218160359)
|
|
102
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "variants" ADD "count_on_hand" integer DEFAULT 0 NOT NULL
|
|
103
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "products" ADD "count_on_hand" integer DEFAULT 0 NOT NULL[0m
|
|
104
|
+
[1m[35mSpree::Variant Load (0.1ms)[0m SELECT "variants".* FROM "variants"
|
|
105
|
+
[1m[36mSpree::Product Load (0.1ms)[0m [1mSELECT "products".* FROM "products" [0m
|
|
106
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160359')
|
|
107
|
+
Migrating to ChangeTaxonsToNestedSet (20120218160360)
|
|
108
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "taxons" ADD "lft" integer[0m
|
|
109
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "taxons" ADD "rgt" integer
|
|
110
|
+
[1m[36mSpree::Taxon Load (0.1ms)[0m [1mSELECT "taxons".* FROM "taxons" WHERE "taxons"."parent_id" IS NULL ORDER BY position ASC[0m
|
|
111
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160360')
|
|
112
|
+
Migrating to MoveToConfigurableGateways (20120218160361)
|
|
113
|
+
[1m[36m (0.3ms)[0m [1mDROP TABLE "gateways"[0m
|
|
114
|
+
[1m[35m (0.2ms)[0m DROP TABLE "gateway_options"
|
|
115
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "gateway_option_values"[0m
|
|
116
|
+
[1m[35m (0.1ms)[0m DROP TABLE "gateway_configurations"
|
|
117
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "gateways" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "name" varchar(255), "description" text, "active" boolean DEFAULT 't', "environment" varchar(255) DEFAULT 'development', "server" varchar(255) DEFAULT 'test', "test_mode" boolean DEFAULT 't', "created_at" datetime, "updated_at" datetime) [0m
|
|
118
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160361')
|
|
119
|
+
Migrating to ProductGroupsAndScopes (20120218160362)
|
|
120
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "product_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "permalink" varchar(255), "order" varchar(255)) [0m
|
|
121
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "product_scopes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "arguments" text, "product_group_id" integer)
|
|
122
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("product_groups")[0m
|
|
123
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_product_groups_on_name" ON "product_groups" ("name")
|
|
124
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("product_groups")[0m
|
|
125
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_product_groups_on_name')
|
|
126
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_product_groups_on_permalink" ON "product_groups" ("permalink")[0m
|
|
127
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("product_scopes")
|
|
128
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_product_scopes_on_name" ON "product_scopes" ("name")[0m
|
|
129
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("product_scopes")
|
|
130
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_product_scopes_on_name')[0m
|
|
131
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_product_scopes_on_product_group_id" ON "product_scopes" ("product_group_id")
|
|
132
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160362')[0m
|
|
133
|
+
Migrating to AddOpenIdAuthenticationTables (20120218160363)
|
|
134
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "open_id_authentication_associations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "issued" integer, "lifetime" integer, "handle" varchar(255), "assoc_type" varchar(255), "server_url" blob, "secret" blob)
|
|
135
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "open_id_authentication_nonces" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "timestamp" integer NOT NULL, "server_url" varchar(255), "salt" varchar(255) NOT NULL) [0m
|
|
136
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160363')
|
|
137
|
+
Migrating to AddOpenidFieldToUsers (20120218160364)
|
|
138
|
+
[1m[36m (0.8ms)[0m [1mALTER TABLE "users" ADD "openid_identifier" varchar(255)[0m
|
|
139
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("users")
|
|
140
|
+
[1m[36m (0.3ms)[0m [1mCREATE INDEX "index_users_on_openid_identifier" ON "users" ("openid_identifier")[0m
|
|
141
|
+
[1m[35m (0.7ms)[0m CREATE TEMPORARY TABLE "altered_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "crypted_password" varchar(128) DEFAULT '' NOT NULL, "salt" varchar(128) DEFAULT '' NOT NULL, "email" varchar(255), "remember_token" varchar(255), "remember_token_expires_at" varchar(255), "persistence_token" varchar(255), "single_access_token" varchar(255), "perishable_token" varchar(255), "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime, "current_login_at" datetime, "last_login_at" datetime, "current_login_ip" varchar(255), "last_login_ip" varchar(255), "login" varchar(255), "ship_address_id" integer, "bill_address_id" integer, "created_at" datetime, "updated_at" datetime, "openid_identifier" varchar(255))
|
|
142
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("users")[0m
|
|
143
|
+
[1m[35m (0.1ms)[0m PRAGMA index_info('index_users_on_openid_identifier')
|
|
144
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("altered_users")[0m
|
|
145
|
+
[1m[35m (0.3ms)[0m CREATE INDEX "temp_index_altered_users_on_openid_identifier" ON "altered_users" ("openid_identifier")
|
|
146
|
+
[1m[36m (0.3ms)[0m [1mSELECT * FROM "users"[0m
|
|
147
|
+
[1m[35m (0.5ms)[0m DROP TABLE "users"
|
|
148
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "crypted_password" varchar(128) DEFAULT '' NOT NULL, "salt" varchar(128) DEFAULT '' NOT NULL, "email" varchar(255), "remember_token" varchar(255), "remember_token_expires_at" varchar(255), "persistence_token" varchar(255), "single_access_token" varchar(255), "perishable_token" varchar(255), "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime, "current_login_at" datetime, "last_login_at" datetime, "current_login_ip" varchar(255), "last_login_ip" varchar(255), "login" varchar(255), "ship_address_id" integer, "bill_address_id" integer, "created_at" datetime, "updated_at" datetime, "openid_identifier" varchar(255)) [0m
|
|
149
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_users")
|
|
150
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('temp_index_altered_users_on_openid_identifier')[0m
|
|
151
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
|
152
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_users_on_openid_identifier" ON "users" ("openid_identifier")[0m
|
|
153
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_users"
|
|
154
|
+
[1m[36m (0.2ms)[0m [1mDROP TABLE "altered_users"[0m
|
|
155
|
+
[1m[35m (0.2ms)[0m CREATE TEMPORARY TABLE "altered_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "crypted_password" varchar(128) DEFAULT '' NOT NULL, "salt" varchar(128) DEFAULT '' NOT NULL, "email" varchar(255), "remember_token" varchar(255), "remember_token_expires_at" varchar(255), "persistence_token" varchar(255), "single_access_token" varchar(255), "perishable_token" varchar(255), "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime, "current_login_at" datetime, "last_login_at" datetime, "current_login_ip" varchar(255), "last_login_ip" varchar(255), "login" varchar(255), "ship_address_id" integer, "bill_address_id" integer, "created_at" datetime, "updated_at" datetime, "openid_identifier" varchar(255))
|
|
156
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("users")[0m
|
|
157
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_openid_identifier')
|
|
158
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_users")[0m
|
|
159
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_users_on_openid_identifier" ON "altered_users" ("openid_identifier")
|
|
160
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "users"[0m
|
|
161
|
+
[1m[35m (0.1ms)[0m DROP TABLE "users"
|
|
162
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "crypted_password" varchar(128), "salt" varchar(128) DEFAULT '' NOT NULL, "email" varchar(255), "remember_token" varchar(255), "remember_token_expires_at" varchar(255), "persistence_token" varchar(255), "single_access_token" varchar(255), "perishable_token" varchar(255), "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime, "current_login_at" datetime, "last_login_at" datetime, "current_login_ip" varchar(255), "last_login_ip" varchar(255), "login" varchar(255), "ship_address_id" integer, "bill_address_id" integer, "created_at" datetime, "updated_at" datetime, "openid_identifier" varchar(255)) [0m
|
|
163
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_users")
|
|
164
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('temp_index_altered_users_on_openid_identifier')[0m
|
|
165
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
|
166
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_users_on_openid_identifier" ON "users" ("openid_identifier")[0m
|
|
167
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_users"
|
|
168
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_users"[0m
|
|
169
|
+
[1m[35m (0.2ms)[0m CREATE TEMPORARY TABLE "altered_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "crypted_password" varchar(128), "salt" varchar(128) DEFAULT '' NOT NULL, "email" varchar(255), "remember_token" varchar(255), "remember_token_expires_at" varchar(255), "persistence_token" varchar(255), "single_access_token" varchar(255), "perishable_token" varchar(255), "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime, "current_login_at" datetime, "last_login_at" datetime, "current_login_ip" varchar(255), "last_login_ip" varchar(255), "login" varchar(255), "ship_address_id" integer, "bill_address_id" integer, "created_at" datetime, "updated_at" datetime, "openid_identifier" varchar(255))
|
|
170
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("users")[0m
|
|
171
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_openid_identifier')
|
|
172
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_users")[0m
|
|
173
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_users_on_openid_identifier" ON "altered_users" ("openid_identifier")
|
|
174
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "users"[0m
|
|
175
|
+
[1m[35m (0.2ms)[0m DROP TABLE "users"
|
|
176
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "crypted_password" varchar(128), "salt" varchar(128), "email" varchar(255), "remember_token" varchar(255), "remember_token_expires_at" varchar(255), "persistence_token" varchar(255), "single_access_token" varchar(255), "perishable_token" varchar(255), "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime, "current_login_at" datetime, "last_login_at" datetime, "current_login_ip" varchar(255), "last_login_ip" varchar(255), "login" varchar(255), "ship_address_id" integer, "bill_address_id" integer, "created_at" datetime, "updated_at" datetime, "openid_identifier" varchar(255)) [0m
|
|
177
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_users")
|
|
178
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('temp_index_altered_users_on_openid_identifier')[0m
|
|
179
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
|
180
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_users_on_openid_identifier" ON "users" ("openid_identifier")[0m
|
|
181
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_users"
|
|
182
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_users"[0m
|
|
183
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160364')
|
|
184
|
+
Migrating to ChangePreferenceValueType (20120218160365)
|
|
185
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("preferences")[0m
|
|
186
|
+
[1m[35m (0.1ms)[0m PRAGMA index_info('index_preferences_on_owner_and_attribute_and_preference')
|
|
187
|
+
[1m[36m (0.5ms)[0m [1mDROP INDEX "index_preferences_on_owner_and_attribute_and_preference"[0m
|
|
188
|
+
[1m[35m (0.4ms)[0m CREATE TEMPORARY TABLE "altered_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attribute" varchar(100) NOT NULL, "owner_id" integer(30) NOT NULL, "owner_type" varchar(50) NOT NULL, "group_id" integer, "group_type" varchar(50), "value" varchar(255), "created_at" datetime, "updated_at" datetime)
|
|
189
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("preferences")[0m
|
|
190
|
+
[1m[35m (0.2ms)[0m SELECT * FROM "preferences"
|
|
191
|
+
[1m[36m (0.4ms)[0m [1mDROP TABLE "preferences"[0m
|
|
192
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attribute" varchar(100) NOT NULL, "owner_id" integer(30) NOT NULL, "owner_type" varchar(50) NOT NULL, "group_id" integer, "group_type" varchar(50), "value" text(255), "created_at" datetime, "updated_at" datetime)
|
|
193
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("altered_preferences")[0m
|
|
194
|
+
[1m[35m (0.2ms)[0m SELECT * FROM "altered_preferences"
|
|
195
|
+
[1m[36m (0.2ms)[0m [1mDROP TABLE "altered_preferences"[0m
|
|
196
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160365')
|
|
197
|
+
Migrating to CreateBillingIntegrations (20120218160366)
|
|
198
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "billing_integrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "name" varchar(255), "description" text, "active" boolean DEFAULT 't', "environment" varchar(255) DEFAULT 'development', "created_at" datetime, "updated_at" datetime) [0m
|
|
199
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160366')
|
|
200
|
+
Migrating to ChargeRefactoring (20120218160367)
|
|
201
|
+
[1m[36m (0.6ms)[0m [1mALTER TABLE "orders" ADD "completed_at" datetime[0m
|
|
202
|
+
[1m[35mOrder Load (0.1ms)[0m SELECT "orders".* FROM "orders"
|
|
203
|
+
[1m[36m (0.2ms)[0m [1mCREATE TEMPORARY TABLE "altered_checkouts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "order_id" integer, "email" varchar(255), "ip_address" varchar(255), "special_instructions" text, "bill_address_id" integer, "completed_at" datetime, "created_at" datetime, "updated_at" datetime) [0m
|
|
204
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("checkouts")
|
|
205
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "checkouts"[0m
|
|
206
|
+
[1m[35m (0.2ms)[0m DROP TABLE "checkouts"
|
|
207
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "checkouts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "order_id" integer, "email" varchar(255), "ip_address" varchar(255), "special_instructions" text, "bill_address_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
|
208
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_checkouts")
|
|
209
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "altered_checkouts"[0m
|
|
210
|
+
[1m[35m (0.1ms)[0m DROP TABLE "altered_checkouts"
|
|
211
|
+
[1m[36m (0.2ms)[0m [1mCREATE TEMPORARY TABLE "altered_adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "adjustment_source_id" integer, "amount" decimal DEFAULT 0.0 NOT NULL, "type" varchar(255), "description" varchar(255), "adjustment_source_type" varchar(255), "secondary_type" varchar(255), "order_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
|
212
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("adjustments")
|
|
213
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "adjustments"[0m
|
|
214
|
+
[1m[35m (0.2ms)[0m DROP TABLE "adjustments"
|
|
215
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "adjustment_source_id" integer, "amount" decimal, "type" varchar(255), "description" varchar(255), "adjustment_source_type" varchar(255), "secondary_type" varchar(255), "order_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
|
216
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_adjustments")
|
|
217
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "altered_adjustments"[0m
|
|
218
|
+
[1m[35m (0.1ms)[0m DROP TABLE "altered_adjustments"
|
|
219
|
+
[1m[36mSQL (0.0ms)[0m [1mUPDATE "adjustments" SET "type" = 'secondary_type'[0m
|
|
220
|
+
[1m[35mSQL (0.0ms)[0m UPDATE "adjustments" SET "type" = 'CouponCredit' WHERE "adjustments"."type" = 'Credit'
|
|
221
|
+
[1m[36m (0.2ms)[0m [1mCREATE TEMPORARY TABLE "altered_adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "adjustment_source_id" integer, "amount" decimal, "type" varchar(255), "description" varchar(255), "adjustment_source_type" varchar(255), "secondary_type" varchar(255), "order_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
|
222
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("adjustments")
|
|
223
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "adjustments"[0m
|
|
224
|
+
[1m[35m (0.2ms)[0m DROP TABLE "adjustments"
|
|
225
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "adjustment_source_id" integer, "amount" decimal, "type" varchar(255), "description" varchar(255), "adjustment_source_type" varchar(255), "order_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
|
226
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_adjustments")
|
|
227
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "altered_adjustments"[0m
|
|
228
|
+
[1m[35m (0.1ms)[0m DROP TABLE "altered_adjustments"
|
|
229
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160367')[0m
|
|
230
|
+
Migrating to AddSomeIndexes (20120218160368)
|
|
231
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("taxons")
|
|
232
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_taxons_on_permalink" ON "taxons" ("permalink")[0m
|
|
233
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("taxons")
|
|
234
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_info('index_taxons_on_permalink')[0m
|
|
235
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_taxons_on_parent_id" ON "taxons" ("parent_id")
|
|
236
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("taxons")[0m
|
|
237
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_taxons_on_parent_id')
|
|
238
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_taxons_on_permalink')[0m
|
|
239
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_taxons_on_taxonomy_id" ON "taxons" ("taxonomy_id")
|
|
240
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("assets")[0m
|
|
241
|
+
[1m[35m (0.2ms)[0m CREATE INDEX "index_assets_on_viewable_id" ON "assets" ("viewable_id")
|
|
242
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("assets")[0m
|
|
243
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_assets_on_viewable_id')
|
|
244
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_assets_on_viewable_type_and_type" ON "assets" ("viewable_type", "type")[0m
|
|
245
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("product_properties")
|
|
246
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_product_properties_on_product_id" ON "product_properties" ("product_id")[0m
|
|
247
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("option_values_variants")
|
|
248
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_option_values_variants_on_variant_id')[0m
|
|
249
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_option_values_variants_on_variant_id_and_option_value_id" ON "option_values_variants" ("variant_id", "option_value_id")
|
|
250
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160368')[0m
|
|
251
|
+
Migrating to CheckoutStateMachine (20120218160369)
|
|
252
|
+
[1m[35m (0.7ms)[0m ALTER TABLE "checkouts" ADD "state" varchar(255)
|
|
253
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160369')[0m
|
|
254
|
+
Migrating to StateForShipments (20120218160370)
|
|
255
|
+
[1m[35m (0.5ms)[0m ALTER TABLE "shipments" ADD "state" varchar(255)
|
|
256
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160370')[0m
|
|
257
|
+
Migrating to MakeStateEventsPolymorphic (20120218160371)
|
|
258
|
+
[1m[35m (0.3ms)[0m CREATE TEMPORARY TABLE "altered_state_events" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "previous_state" varchar(255), "stateful_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
259
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("state_events")[0m
|
|
260
|
+
[1m[35m (0.2ms)[0m SELECT * FROM "state_events"
|
|
261
|
+
[1m[36m (0.4ms)[0m [1mDROP TABLE "state_events"[0m
|
|
262
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "state_events" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "previous_state" varchar(255), "stateful_id" integer, "user_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
263
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_state_events")[0m
|
|
264
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_state_events"
|
|
265
|
+
[1m[36m (0.2ms)[0m [1mDROP TABLE "altered_state_events"[0m
|
|
266
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "state_events" ADD "stateful_type" varchar(255)
|
|
267
|
+
[1m[36m (0.1ms)[0m [1mUPDATE state_events SET stateful_type = 'Order'[0m
|
|
268
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160371')
|
|
269
|
+
Migrating to ShipAddressIdForCheckouts (20120218160372)
|
|
270
|
+
[1m[36m (0.6ms)[0m [1mALTER TABLE "checkouts" ADD "ship_address_id" integer[0m
|
|
271
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160372')
|
|
272
|
+
Migrating to ShippingMethodIdForCheckouts (20120218160373)
|
|
273
|
+
[1m[36m (0.7ms)[0m [1mALTER TABLE "checkouts" ADD "shipping_method_id" integer[0m
|
|
274
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160373')
|
|
275
|
+
Migrating to CreditcardLastFourDigits (20120218160374)
|
|
276
|
+
[1m[36m (0.4ms)[0m [1mCREATE TEMPORARY TABLE "altered_creditcards" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" text, "verification_value" text, "month" varchar(255), "year" varchar(255), "cc_type" varchar(255), "last_digits" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "start_month" varchar(255), "start_year" varchar(255), "issue_number" varchar(255), "address_id" integer, "checkout_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
|
277
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("creditcards")
|
|
278
|
+
[1m[36m (0.3ms)[0m [1mSELECT * FROM "creditcards"[0m
|
|
279
|
+
[1m[35m (0.4ms)[0m DROP TABLE "creditcards"
|
|
280
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "creditcards" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" text, "verification_value" text, "month" varchar(255), "year" varchar(255), "cc_type" varchar(255), "last_digits" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "start_month" varchar(255), "start_year" varchar(255), "issue_number" varchar(255), "address_id" integer, "checkout_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
|
281
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_creditcards")
|
|
282
|
+
[1m[36m (0.2ms)[0m [1mSELECT * FROM "altered_creditcards"[0m
|
|
283
|
+
[1m[35m (0.2ms)[0m DROP TABLE "altered_creditcards"
|
|
284
|
+
[1m[36m (0.2ms)[0m [1mSELECT * FROM creditcards[0m
|
|
285
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160374')
|
|
286
|
+
Migrating to PopulateLegacyShipmentState (20120218160375)
|
|
287
|
+
[1m[36m (0.2ms)[0m [1mSELECT * FROM shipments[0m
|
|
288
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160375')
|
|
289
|
+
Migrating to AddCostPrice (20120218160376)
|
|
290
|
+
[1m[36m (0.6ms)[0m [1mALTER TABLE "variants" ADD "cost_price" decimal(8,2) DEFAULT NULL[0m
|
|
291
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160376')
|
|
292
|
+
Migrating to ShipmentIdForInventoryUnits (20120218160377)
|
|
293
|
+
[1m[36m (0.6ms)[0m [1mALTER TABLE "inventory_units" ADD "shipment_id" integer[0m
|
|
294
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("inventory_units")
|
|
295
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_info('index_inventory_units_on_order_id')[0m
|
|
296
|
+
[1m[35m (0.1ms)[0m PRAGMA index_info('index_inventory_units_on_variant_id')
|
|
297
|
+
[1m[36m (0.3ms)[0m [1mCREATE INDEX "index_inventory_units_on_shipment_id" ON "inventory_units" ("shipment_id")[0m
|
|
298
|
+
[1m[35mSpree::Shipment Load (0.1ms)[0m SELECT "shipments".* FROM "shipments"
|
|
299
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160377')[0m
|
|
300
|
+
Migrating to CimFieldsForCreditcards (20120218160378)
|
|
301
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "creditcards" ADD "gateway_customer_profile_id" varchar(255)
|
|
302
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "creditcards" ADD "gateway_payment_profile_id" varchar(255)[0m
|
|
303
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160378')
|
|
304
|
+
Migrating to CreateReturnAuthorizations (20120218160379)
|
|
305
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "return_authorizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(255), "state" varchar(255), "amount" decimal(8,2) DEFAULT 0.0 NOT NULL, "order_id" integer, "reason" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
306
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160379')
|
|
307
|
+
Migrating to AddReturnAuthorizationToInventoryUnits (20120218160380)
|
|
308
|
+
[1m[36m (0.8ms)[0m [1mALTER TABLE "inventory_units" ADD "return_authorization_id" integer[0m
|
|
309
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160380')
|
|
310
|
+
Migrating to CreateTrackers (20120218160381)
|
|
311
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "trackers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "environment" varchar(255), "analytics_id" varchar(255), "active" boolean DEFAULT 't', "created_at" datetime, "updated_at" datetime) [0m
|
|
312
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160381')
|
|
313
|
+
Migrating to CreditcardIdForCreditcardTxns (20120218160382)
|
|
314
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "creditcard_txns" ADD "creditcard_id" integer[0m
|
|
315
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160382')
|
|
316
|
+
Migrating to OriginalCreditcardTxnIdForCreditcardTxns (20120218160383)
|
|
317
|
+
[1m[36m (0.6ms)[0m [1mALTER TABLE "creditcard_txns" ADD "original_creditcard_txn_id" integer[0m
|
|
318
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160383')
|
|
319
|
+
Migrating to AddTestModeToBillingIntegration (20120218160384)
|
|
320
|
+
[1m[36m (0.6ms)[0m [1mALTER TABLE "billing_integrations" ADD "test_mode" boolean DEFAULT 't'[0m
|
|
321
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "billing_integrations" ADD "server" varchar(255) DEFAULT 'test'
|
|
322
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160384')[0m
|
|
323
|
+
Migrating to CreateProductsProductGroups (20120218160385)
|
|
324
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "product_groups_products" ("product_id" integer, "product_group_id" integer)
|
|
325
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160385')[0m
|
|
326
|
+
Migrating to CreatePaymentMethods (20120218160386)
|
|
327
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "payment_methods" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "name" varchar(255), "description" text, "active" boolean DEFAULT 't', "environment" varchar(255) DEFAULT 'development', "created_at" datetime, "updated_at" datetime)
|
|
328
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160386')[0m
|
|
329
|
+
Migrating to PolymorphicPayments (20120218160387)
|
|
330
|
+
[1m[35m (0.4ms)[0m CREATE TEMPORARY TABLE "altered_payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal DEFAULT 0.0 NOT NULL, "type" varchar(255), "order_id" integer, "creditcard_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
331
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("payments")[0m
|
|
332
|
+
[1m[35m (0.2ms)[0m SELECT * FROM "payments"
|
|
333
|
+
[1m[36m (0.5ms)[0m [1mDROP TABLE "payments"[0m
|
|
334
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal DEFAULT 0.0 NOT NULL, "order_id" integer, "creditcard_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
335
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("altered_payments")[0m
|
|
336
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_payments"
|
|
337
|
+
[1m[36m (0.2ms)[0m [1mDROP TABLE "altered_payments"[0m
|
|
338
|
+
[1m[35m (0.1ms)[0m CREATE TEMPORARY TABLE "altered_payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal DEFAULT 0.0 NOT NULL, "order_id" integer, "creditcard_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
339
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("payments")[0m
|
|
340
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "payments"
|
|
341
|
+
[1m[36m (0.2ms)[0m [1mDROP TABLE "payments"[0m
|
|
342
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal DEFAULT 0.0 NOT NULL, "order_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
343
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_payments")[0m
|
|
344
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_payments"
|
|
345
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_payments"[0m
|
|
346
|
+
[1m[35m (0.1ms)[0m CREATE TEMPORARY TABLE "altered_payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal DEFAULT 0.0 NOT NULL, "payable_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
347
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("payments")[0m
|
|
348
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "payments"
|
|
349
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "payments"[0m
|
|
350
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal DEFAULT 0.0 NOT NULL, "payable_id" integer, "created_at" datetime, "updated_at" datetime)
|
|
351
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_payments")[0m
|
|
352
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_payments"
|
|
353
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_payments"[0m
|
|
354
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "payments" ADD "payable_type" varchar(255)
|
|
355
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "payments" ADD "payment_method" varchar(255)[0m
|
|
356
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "payments" ADD "source_id" integer
|
|
357
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "payments" ADD "source_type" varchar(255)[0m
|
|
358
|
+
[1m[35m (0.0ms)[0m UPDATE payments SET payable_type = 'Order'
|
|
359
|
+
[1m[36mSpree::Creditcard Load (0.1ms)[0m [1mSELECT "creditcards".* FROM "creditcards" [0m
|
|
360
|
+
[1m[35m (0.2ms)[0m CREATE TEMPORARY TABLE "altered_creditcards" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" text, "verification_value" text, "month" varchar(255), "year" varchar(255), "cc_type" varchar(255), "last_digits" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "start_month" varchar(255), "start_year" varchar(255), "issue_number" varchar(255), "address_id" integer, "checkout_id" integer, "created_at" datetime, "updated_at" datetime, "gateway_customer_profile_id" varchar(255), "gateway_payment_profile_id" varchar(255))
|
|
361
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("creditcards")[0m
|
|
362
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "creditcards"
|
|
363
|
+
[1m[36m (0.2ms)[0m [1mDROP TABLE "creditcards"[0m
|
|
364
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "creditcards" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" text, "verification_value" text, "month" varchar(255), "year" varchar(255), "cc_type" varchar(255), "last_digits" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "start_month" varchar(255), "start_year" varchar(255), "issue_number" varchar(255), "address_id" integer, "created_at" datetime, "updated_at" datetime, "gateway_customer_profile_id" varchar(255), "gateway_payment_profile_id" varchar(255))
|
|
365
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("altered_creditcards")[0m
|
|
366
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_creditcards"
|
|
367
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_creditcards"[0m
|
|
368
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160387')
|
|
369
|
+
Migrating to ChangePaymentsPaymentMethodToBelongsTo (20120218160388)
|
|
370
|
+
[1m[36m (0.4ms)[0m [1mCREATE TEMPORARY TABLE "altered_payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal DEFAULT 0.0 NOT NULL, "payable_id" integer, "created_at" datetime, "updated_at" datetime, "payable_type" varchar(255), "payment_method" varchar(255), "source_id" integer, "source_type" varchar(255)) [0m
|
|
371
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("payments")
|
|
372
|
+
[1m[36m (0.3ms)[0m [1mSELECT * FROM "payments"[0m
|
|
373
|
+
[1m[35m (0.5ms)[0m DROP TABLE "payments"
|
|
374
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal DEFAULT 0.0 NOT NULL, "payable_id" integer, "created_at" datetime, "updated_at" datetime, "payable_type" varchar(255), "source_id" integer, "source_type" varchar(255)) [0m
|
|
375
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("altered_payments")
|
|
376
|
+
[1m[36m (0.2ms)[0m [1mSELECT * FROM "altered_payments"[0m
|
|
377
|
+
[1m[35m (0.2ms)[0m DROP TABLE "altered_payments"
|
|
378
|
+
[1m[36m (0.5ms)[0m [1mALTER TABLE "payments" ADD "payment_method_id" integer[0m
|
|
379
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160388')
|
|
380
|
+
Migrating to AssignCreditcardTxnsToPayment (20120218160389)
|
|
381
|
+
[1m[36m (0.7ms)[0m [1mALTER TABLE "creditcard_txns" ADD "payment_id" integer[0m
|
|
382
|
+
[1m[35m (0.2ms)[0m SELECT * FROM creditcard_txns
|
|
383
|
+
[1m[36m (0.4ms)[0m [1mCREATE TEMPORARY TABLE "altered_creditcard_txns" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "creditcard_payment_id" integer, "txn_type" integer, "amount" decimal DEFAULT 0.0 NOT NULL, "response_code" varchar(255), "avs_response" text, "cvv_response" text, "created_at" datetime, "updated_at" datetime, "creditcard_id" integer, "original_creditcard_txn_id" integer, "payment_id" integer) [0m
|
|
384
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("creditcard_txns")
|
|
385
|
+
[1m[36m (0.2ms)[0m [1mSELECT * FROM "creditcard_txns"[0m
|
|
386
|
+
[1m[35m (0.4ms)[0m DROP TABLE "creditcard_txns"
|
|
387
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "creditcard_txns" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "txn_type" integer, "amount" decimal DEFAULT 0.0 NOT NULL, "response_code" varchar(255), "avs_response" text, "cvv_response" text, "created_at" datetime, "updated_at" datetime, "creditcard_id" integer, "original_creditcard_txn_id" integer, "payment_id" integer) [0m
|
|
388
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_creditcard_txns")
|
|
389
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "altered_creditcard_txns"[0m
|
|
390
|
+
[1m[35m (0.1ms)[0m DROP TABLE "altered_creditcard_txns"
|
|
391
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160389')[0m
|
|
392
|
+
Migrating to StiForTransactions (20120218160390)
|
|
393
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "creditcard_txns" RENAME TO "transactions"
|
|
394
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "transactions" ADD "type" varchar(255)[0m
|
|
395
|
+
[1m[35m (0.2ms)[0m CREATE TEMPORARY TABLE "altered_transactions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "txn_type" integer, "amount" decimal DEFAULT 0.0 NOT NULL, "response_code" varchar(255), "avs_response" text, "cvv_response" text, "created_at" datetime, "updated_at" datetime, "creditcard_id" integer, "original_creditcard_txn_id" integer, "payment_id" integer, "type" varchar(255))
|
|
396
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("transactions")[0m
|
|
397
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "transactions"
|
|
398
|
+
[1m[36m (0.2ms)[0m [1mDROP TABLE "transactions"[0m
|
|
399
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "transactions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "txn_type" integer, "amount" decimal DEFAULT 0.0 NOT NULL, "response_code" varchar(255), "avs_response" text, "cvv_response" text, "created_at" datetime, "updated_at" datetime, "original_creditcard_txn_id" integer, "payment_id" integer, "type" varchar(255))
|
|
400
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_transactions")[0m
|
|
401
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_transactions"
|
|
402
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_transactions"[0m
|
|
403
|
+
[1m[35m (0.0ms)[0m UPDATE transactions SET type = 'CreditcardTxn'
|
|
404
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160390')[0m
|
|
405
|
+
Migrating to DropBillingIntegrations (20120218160391)
|
|
406
|
+
[1m[35m (0.3ms)[0m DROP TABLE "billing_integrations"
|
|
407
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160391')[0m
|
|
408
|
+
Migrating to DeletedAtForPaymentMethods (20120218160392)
|
|
409
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "payment_methods" ADD "deleted_at" datetime DEFAULT NULL
|
|
410
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160392')[0m
|
|
411
|
+
Migrating to AddAdjustmentsIndex (20120218160393)
|
|
412
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("adjustments")
|
|
413
|
+
[1m[36m (0.3ms)[0m [1mCREATE INDEX "index_adjustments_on_order_id" ON "adjustments" ("order_id")[0m
|
|
414
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160393')
|
|
415
|
+
Migrating to FixByPopularity (20120218160394)
|
|
416
|
+
[1m[36m (0.1ms)[0m [1mUPDATE product_scopes SET name='descend_by_popularity' WHERE name='by_popularity'[0m
|
|
417
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160394')
|
|
418
|
+
Migrating to AddAltTextToImages (20120218160395)
|
|
419
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "assets" ADD "alt" text[0m
|
|
420
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160395')
|
|
421
|
+
Migrating to FixExistingCouponCredits (20120218160396)
|
|
422
|
+
[1m[36m (0.1ms)[0m [1mUPDATE adjustments SET type='PromotionCredit' WHERE type='CouponCredit'[0m
|
|
423
|
+
[1m[35m (0.1ms)[0m UPDATE adjustments SET adjustment_source_type='Promotion' WHERE adjustment_source_type='Coupon'
|
|
424
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160396')[0m
|
|
425
|
+
Migrating to AddDisplayToPaymentMethods (20120218160397)
|
|
426
|
+
[1m[35m (0.5ms)[0m ALTER TABLE "payment_methods" ADD "display" varchar(255) DEFAULT NULL
|
|
427
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160397')[0m
|
|
428
|
+
Migrating to AddAddressesCheckoutsIndexes (20120218160398)
|
|
429
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("addresses")
|
|
430
|
+
[1m[36m (0.4ms)[0m [1mCREATE INDEX "index_addresses_on_firstname" ON "addresses" ("firstname")[0m
|
|
431
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("addresses")
|
|
432
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_info('index_addresses_on_firstname')[0m
|
|
433
|
+
[1m[35m (0.2ms)[0m CREATE INDEX "index_addresses_on_lastname" ON "addresses" ("lastname")
|
|
434
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("checkouts")[0m
|
|
435
|
+
[1m[35m (0.2ms)[0m CREATE INDEX "index_checkouts_on_order_id" ON "checkouts" ("order_id")
|
|
436
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("checkouts")[0m
|
|
437
|
+
[1m[35m (0.1ms)[0m PRAGMA index_info('index_checkouts_on_order_id')
|
|
438
|
+
[1m[36m (0.3ms)[0m [1mCREATE INDEX "index_checkouts_on_bill_address_id" ON "checkouts" ("bill_address_id")[0m
|
|
439
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160398')
|
|
440
|
+
Migrating to AddIconToTaxons (20120218160399)
|
|
441
|
+
[1m[36m (0.8ms)[0m [1mALTER TABLE "taxons" ADD "icon_file_name" varchar(255)[0m
|
|
442
|
+
[1m[35m (0.5ms)[0m ALTER TABLE "taxons" ADD "icon_content_type" varchar(255)
|
|
443
|
+
[1m[36m (0.6ms)[0m [1mALTER TABLE "taxons" ADD "icon_file_size" integer[0m
|
|
444
|
+
[1m[35m (0.5ms)[0m ALTER TABLE "taxons" ADD "icon_updated_at" datetime
|
|
445
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160399')[0m
|
|
446
|
+
Migrating to AddDescriptionToTaxons (20120218160400)
|
|
447
|
+
[1m[35m (0.8ms)[0m ALTER TABLE "taxons" ADD "description" text
|
|
448
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160400')[0m
|
|
449
|
+
Migrating to IndexForShipmentsNumber (20120218160401)
|
|
450
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("shipments")
|
|
451
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_shipments_on_number" ON "shipments" ("number")[0m
|
|
452
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160401')
|
|
453
|
+
Migrating to AddIndexOnUsersPersistenceToken (20120218160402)
|
|
454
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("users")[0m
|
|
455
|
+
[1m[35m (0.1ms)[0m PRAGMA index_info('index_users_on_openid_identifier')
|
|
456
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_users_on_persistence_token" ON "users" ("persistence_token")[0m
|
|
457
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160402')
|
|
458
|
+
Migrating to AddDefaultToTaxCategories (20120218160403)
|
|
459
|
+
[1m[36m (0.7ms)[0m [1mALTER TABLE "tax_categories" ADD "is_default" boolean DEFAULT 'f'[0m
|
|
460
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160403')
|
|
461
|
+
Migrating to AddDisplayToShippingMethods (20120218160404)
|
|
462
|
+
[1m[36m (0.7ms)[0m [1mALTER TABLE "shipping_methods" ADD "display_on" varchar(255) DEFAULT NULL[0m
|
|
463
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160404')
|
|
464
|
+
Migrating to RenamePaymentMethodDisplay (20120218160405)
|
|
465
|
+
[1m[36m (0.5ms)[0m [1mCREATE TEMPORARY TABLE "altered_payment_methods" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "name" varchar(255), "description" text, "active" boolean DEFAULT 't', "environment" varchar(255) DEFAULT 'development', "created_at" datetime, "updated_at" datetime, "deleted_at" datetime, "display_on" varchar(255)) [0m
|
|
466
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("payment_methods")
|
|
467
|
+
[1m[36m (0.3ms)[0m [1mSELECT * FROM "payment_methods"[0m
|
|
468
|
+
[1m[35m (0.5ms)[0m DROP TABLE "payment_methods"
|
|
469
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "payment_methods" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "name" varchar(255), "description" text, "active" boolean DEFAULT 't', "environment" varchar(255) DEFAULT 'development', "created_at" datetime, "updated_at" datetime, "deleted_at" datetime, "display_on" varchar(255)) [0m
|
|
470
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("altered_payment_methods")
|
|
471
|
+
[1m[36m (0.2ms)[0m [1mSELECT * FROM "altered_payment_methods"[0m
|
|
472
|
+
[1m[35m (0.2ms)[0m DROP TABLE "altered_payment_methods"
|
|
473
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160405')[0m
|
|
474
|
+
Migrating to RenamePreferencesField (20120218160406)
|
|
475
|
+
[1m[35m (0.4ms)[0m CREATE TEMPORARY TABLE "altered_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100) NOT NULL, "owner_id" integer(30) NOT NULL, "owner_type" varchar(50) NOT NULL, "group_id" integer, "group_type" varchar(50), "value" text(255), "created_at" datetime, "updated_at" datetime)
|
|
476
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("preferences")[0m
|
|
477
|
+
[1m[35m (0.3ms)[0m SELECT * FROM "preferences"
|
|
478
|
+
[1m[36m (0.5ms)[0m [1mDROP TABLE "preferences"[0m
|
|
479
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100) NOT NULL, "owner_id" integer(30) NOT NULL, "owner_type" varchar(50) NOT NULL, "group_id" integer, "group_type" varchar(50), "value" text(255), "created_at" datetime, "updated_at" datetime)
|
|
480
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_preferences")[0m
|
|
481
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_preferences"
|
|
482
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_preferences"[0m
|
|
483
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160406')
|
|
484
|
+
Migrating to AddGuestFlag (20120218160407)
|
|
485
|
+
[1m[36m (0.5ms)[0m [1mALTER TABLE "users" ADD "guest" boolean[0m
|
|
486
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160407')
|
|
487
|
+
Migrating to DropOrderToken (20120218160408)
|
|
488
|
+
[1m[36m (0.4ms)[0m [1mCREATE TEMPORARY TABLE "altered_orders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(15), "item_total" decimal DEFAULT 0.0 NOT NULL, "total" decimal DEFAULT 0.0 NOT NULL, "state" varchar(255), "token" varchar(255), "adjustment_total" decimal DEFAULT 0.0 NOT NULL, "credit_total" decimal DEFAULT 0.0 NOT NULL, "user_id" integer, "created_at" datetime, "updated_at" datetime, "completed_at" datetime) [0m
|
|
489
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("orders")
|
|
490
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_info('index_orders_on_number')[0m
|
|
491
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("altered_orders")
|
|
492
|
+
[1m[36m (0.3ms)[0m [1mCREATE INDEX "temp_index_altered_orders_on_number" ON "altered_orders" ("number")[0m
|
|
493
|
+
[1m[35m (0.3ms)[0m SELECT * FROM "orders"
|
|
494
|
+
[1m[36m (0.6ms)[0m [1mDROP TABLE "orders"[0m
|
|
495
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "orders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(15), "item_total" decimal DEFAULT 0.0 NOT NULL, "total" decimal DEFAULT 0.0 NOT NULL, "state" varchar(255), "adjustment_total" decimal DEFAULT 0.0 NOT NULL, "credit_total" decimal DEFAULT 0.0 NOT NULL, "user_id" integer, "created_at" datetime, "updated_at" datetime, "completed_at" datetime)
|
|
496
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_orders")[0m
|
|
497
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('temp_index_altered_orders_on_number')
|
|
498
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("orders")[0m
|
|
499
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_orders_on_number" ON "orders" ("number")
|
|
500
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "altered_orders"[0m
|
|
501
|
+
[1m[35m (0.1ms)[0m DROP TABLE "altered_orders"
|
|
502
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160408')[0m
|
|
503
|
+
Migrating to PaymentsStateAndAssignedToOrderOnly (20120218160409)
|
|
504
|
+
[1m[35m (0.4ms)[0m CREATE TEMPORARY TABLE "altered_payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal DEFAULT 0.0 NOT NULL, "order_id" integer, "created_at" datetime, "updated_at" datetime, "payable_type" varchar(255), "source_id" integer, "source_type" varchar(255), "payment_method_id" integer)
|
|
505
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("payments")[0m
|
|
506
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "payments"
|
|
507
|
+
[1m[36m (0.3ms)[0m [1mDROP TABLE "payments"[0m
|
|
508
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal DEFAULT 0.0 NOT NULL, "order_id" integer, "created_at" datetime, "updated_at" datetime, "payable_type" varchar(255), "source_id" integer, "source_type" varchar(255), "payment_method_id" integer)
|
|
509
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_payments")[0m
|
|
510
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_payments"
|
|
511
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_payments"[0m
|
|
512
|
+
[1m[35m (0.1ms)[0m CREATE TEMPORARY TABLE "altered_payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal DEFAULT 0.0 NOT NULL, "order_id" integer, "created_at" datetime, "updated_at" datetime, "payable_type" varchar(255), "source_id" integer, "source_type" varchar(255), "payment_method_id" integer)
|
|
513
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("payments")[0m
|
|
514
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "payments"
|
|
515
|
+
[1m[36m (0.2ms)[0m [1mDROP TABLE "payments"[0m
|
|
516
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "payments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal DEFAULT 0.0 NOT NULL, "order_id" integer, "created_at" datetime, "updated_at" datetime, "source_id" integer, "source_type" varchar(255), "payment_method_id" integer)
|
|
517
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_payments")[0m
|
|
518
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_payments"
|
|
519
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_payments"[0m
|
|
520
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "payments" ADD "state" varchar(255)
|
|
521
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160409')[0m
|
|
522
|
+
Migrating to CreateAddressKeysForOrder (20120218160410)
|
|
523
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "orders" ADD "bill_address_id" integer
|
|
524
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "orders" ADD "ship_address_id" integer[0m
|
|
525
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160410')
|
|
526
|
+
Migrating to PaymentTotalForOrders (20120218160411)
|
|
527
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "orders" ADD "payment_total" decimal(8,2) DEFAULT 0.0[0m
|
|
528
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160411')
|
|
529
|
+
Migrating to ShippingMethodIdForOrders (20120218160412)
|
|
530
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "orders" ADD "shipping_method_id" integer[0m
|
|
531
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160412')
|
|
532
|
+
Migrating to AddShipmentAndPaymentState (20120218160413)
|
|
533
|
+
[1m[36m (0.5ms)[0m [1mALTER TABLE "orders" ADD "shipment_state" varchar(255)[0m
|
|
534
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "orders" ADD "payment_state" varchar(255)
|
|
535
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160413')[0m
|
|
536
|
+
Migrating to RefactorAdjustments (20120218160414)
|
|
537
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "adjustments" ADD "mandatory" boolean
|
|
538
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "adjustments" ADD "frozen" boolean[0m
|
|
539
|
+
[1m[35m (0.2ms)[0m CREATE TEMPORARY TABLE "altered_adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "source_id" integer, "amount" decimal, "type" varchar(255), "description" varchar(255), "adjustment_source_type" varchar(255), "order_id" integer, "created_at" datetime, "updated_at" datetime, "mandatory" boolean, "frozen" boolean)
|
|
540
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("adjustments")[0m
|
|
541
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_adjustments_on_order_id')
|
|
542
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_adjustments")[0m
|
|
543
|
+
[1m[35m (0.2ms)[0m CREATE INDEX "temp_index_altered_adjustments_on_order_id" ON "altered_adjustments" ("order_id")
|
|
544
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "adjustments"[0m
|
|
545
|
+
[1m[35m (0.3ms)[0m DROP TABLE "adjustments"
|
|
546
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "source_id" integer, "amount" decimal, "type" varchar(255), "description" varchar(255), "adjustment_source_type" varchar(255), "order_id" integer, "created_at" datetime, "updated_at" datetime, "mandatory" boolean, "frozen" boolean) [0m
|
|
547
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_adjustments")
|
|
548
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('temp_index_altered_adjustments_on_order_id')[0m
|
|
549
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("adjustments")
|
|
550
|
+
[1m[36m (0.2ms)[0m [1mCREATE INDEX "index_adjustments_on_order_id" ON "adjustments" ("order_id")[0m
|
|
551
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_adjustments"
|
|
552
|
+
[1m[36m (0.2ms)[0m [1mDROP TABLE "altered_adjustments"[0m
|
|
553
|
+
[1m[35m (0.2ms)[0m CREATE TEMPORARY TABLE "altered_adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "source_id" integer, "amount" decimal, "type" varchar(255), "description" varchar(255), "source_type" varchar(255), "order_id" integer, "created_at" datetime, "updated_at" datetime, "mandatory" boolean, "frozen" boolean)
|
|
554
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("adjustments")[0m
|
|
555
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_adjustments_on_order_id')
|
|
556
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_adjustments")[0m
|
|
557
|
+
[1m[35m (0.2ms)[0m CREATE INDEX "temp_index_altered_adjustments_on_order_id" ON "altered_adjustments" ("order_id")
|
|
558
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "adjustments"[0m
|
|
559
|
+
[1m[35m (0.2ms)[0m DROP TABLE "adjustments"
|
|
560
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "source_id" integer, "amount" decimal, "type" varchar(255), "description" varchar(255), "source_type" varchar(255), "order_id" integer, "created_at" datetime, "updated_at" datetime, "mandatory" boolean, "frozen" boolean) [0m
|
|
561
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_adjustments")
|
|
562
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('temp_index_altered_adjustments_on_order_id')[0m
|
|
563
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("adjustments")
|
|
564
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_adjustments_on_order_id" ON "adjustments" ("order_id")[0m
|
|
565
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_adjustments"
|
|
566
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_adjustments"[0m
|
|
567
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "adjustments" ADD "originator_id" integer
|
|
568
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "adjustments" ADD "originator_type" varchar(255)[0m
|
|
569
|
+
[1m[35m (0.1ms)[0m CREATE TEMPORARY TABLE "altered_adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "source_id" integer, "amount" decimal, "type" varchar(255), "description" varchar(255), "source_type" varchar(255), "order_id" integer, "created_at" datetime, "updated_at" datetime, "mandatory" boolean, "frozen" boolean, "originator_id" integer, "originator_type" varchar(255))
|
|
570
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("adjustments")[0m
|
|
571
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_adjustments_on_order_id')
|
|
572
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_adjustments")[0m
|
|
573
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_adjustments_on_order_id" ON "altered_adjustments" ("order_id")
|
|
574
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "adjustments"[0m
|
|
575
|
+
[1m[35m (0.1ms)[0m DROP TABLE "adjustments"
|
|
576
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "source_id" integer, "amount" decimal, "description" varchar(255), "source_type" varchar(255), "order_id" integer, "created_at" datetime, "updated_at" datetime, "mandatory" boolean, "frozen" boolean, "originator_id" integer, "originator_type" varchar(255)) [0m
|
|
577
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_adjustments")
|
|
578
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('temp_index_altered_adjustments_on_order_id')[0m
|
|
579
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("adjustments")
|
|
580
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_adjustments_on_order_id" ON "adjustments" ("order_id")[0m
|
|
581
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_adjustments"
|
|
582
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_adjustments"[0m
|
|
583
|
+
[1m[35m (0.1ms)[0m CREATE TEMPORARY TABLE "altered_adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "source_id" integer, "amount" decimal, "label" varchar(255), "source_type" varchar(255), "order_id" integer, "created_at" datetime, "updated_at" datetime, "mandatory" boolean, "frozen" boolean, "originator_id" integer, "originator_type" varchar(255))
|
|
584
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("adjustments")[0m
|
|
585
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_adjustments_on_order_id')
|
|
586
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_adjustments")[0m
|
|
587
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_adjustments_on_order_id" ON "altered_adjustments" ("order_id")
|
|
588
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "adjustments"[0m
|
|
589
|
+
[1m[35m (0.2ms)[0m DROP TABLE "adjustments"
|
|
590
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "source_id" integer, "amount" decimal, "label" varchar(255), "source_type" varchar(255), "order_id" integer, "created_at" datetime, "updated_at" datetime, "mandatory" boolean, "frozen" boolean, "originator_id" integer, "originator_type" varchar(255)) [0m
|
|
591
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_adjustments")
|
|
592
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('temp_index_altered_adjustments_on_order_id')[0m
|
|
593
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("adjustments")
|
|
594
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_adjustments_on_order_id" ON "adjustments" ("order_id")[0m
|
|
595
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_adjustments"
|
|
596
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_adjustments"[0m
|
|
597
|
+
[1m[35m (0.1ms)[0m CREATE TEMPORARY TABLE "altered_adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "source_id" integer, "amount" decimal, "label" varchar(255), "source_type" varchar(255), "order_id" integer, "created_at" datetime, "updated_at" datetime, "mandatory" boolean, "frozen" boolean, "originator_id" integer, "originator_type" varchar(255))
|
|
598
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("adjustments")[0m
|
|
599
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_adjustments_on_order_id')
|
|
600
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_adjustments")[0m
|
|
601
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_adjustments_on_order_id" ON "altered_adjustments" ("order_id")
|
|
602
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "adjustments"[0m
|
|
603
|
+
[1m[35m (0.1ms)[0m DROP TABLE "adjustments"
|
|
604
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "source_id" integer, "amount" decimal, "label" varchar(255), "source_type" varchar(255), "order_id" integer, "created_at" datetime, "updated_at" datetime, "mandatory" boolean, "frozen" boolean, "originator_id" integer, "originator_type" varchar(255)) [0m
|
|
605
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_adjustments")
|
|
606
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('temp_index_altered_adjustments_on_order_id')[0m
|
|
607
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("adjustments")
|
|
608
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_adjustments_on_order_id" ON "adjustments" ("order_id")[0m
|
|
609
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_adjustments"
|
|
610
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_adjustments"[0m
|
|
611
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160414')
|
|
612
|
+
Migrating to ResponseCodeAndAvsResponseForPayments (20120218160415)
|
|
613
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "payments" ADD "response_code" varchar(255)[0m
|
|
614
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "payments" ADD "avs_response" varchar(255)
|
|
615
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160415')[0m
|
|
616
|
+
Migrating to ChangeGuestFlagToAnonymous (20120218160416)
|
|
617
|
+
[1m[35m (0.3ms)[0m CREATE TEMPORARY TABLE "altered_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "crypted_password" varchar(128), "salt" varchar(128), "email" varchar(255), "remember_token" varchar(255), "remember_token_expires_at" varchar(255), "persistence_token" varchar(255), "single_access_token" varchar(255), "perishable_token" varchar(255), "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime, "current_login_at" datetime, "last_login_at" datetime, "current_login_ip" varchar(255), "last_login_ip" varchar(255), "login" varchar(255), "ship_address_id" integer, "bill_address_id" integer, "created_at" datetime, "updated_at" datetime, "openid_identifier" varchar(255), "anonymous" boolean)
|
|
618
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("users")[0m
|
|
619
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_persistence_token')
|
|
620
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_openid_identifier')[0m
|
|
621
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_users")
|
|
622
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "temp_index_altered_users_on_persistence_token" ON "altered_users" ("persistence_token")[0m
|
|
623
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_users")
|
|
624
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('temp_index_altered_users_on_persistence_token')[0m
|
|
625
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_users_on_openid_identifier" ON "altered_users" ("openid_identifier")
|
|
626
|
+
[1m[36m (0.2ms)[0m [1mSELECT * FROM "users"[0m
|
|
627
|
+
[1m[35m (0.4ms)[0m DROP TABLE "users"
|
|
628
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "crypted_password" varchar(128), "salt" varchar(128), "email" varchar(255), "remember_token" varchar(255), "remember_token_expires_at" varchar(255), "persistence_token" varchar(255), "single_access_token" varchar(255), "perishable_token" varchar(255), "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime, "current_login_at" datetime, "last_login_at" datetime, "current_login_ip" varchar(255), "last_login_ip" varchar(255), "login" varchar(255), "ship_address_id" integer, "bill_address_id" integer, "created_at" datetime, "updated_at" datetime, "openid_identifier" varchar(255), "anonymous" boolean) [0m
|
|
629
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_users")
|
|
630
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('temp_index_altered_users_on_openid_identifier')[0m
|
|
631
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('temp_index_altered_users_on_persistence_token')
|
|
632
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("users")[0m
|
|
633
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_users_on_openid_identifier" ON "users" ("openid_identifier")
|
|
634
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("users")[0m
|
|
635
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_openid_identifier')
|
|
636
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_users_on_persistence_token" ON "users" ("persistence_token")[0m
|
|
637
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_users"
|
|
638
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_users"[0m
|
|
639
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160416')
|
|
640
|
+
Migrating to EmailForOrders (20120218160417)
|
|
641
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "orders" ADD "email" varchar(255)[0m
|
|
642
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160417')
|
|
643
|
+
Migrating to CreateMailMethods (20120218160418)
|
|
644
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "mail_methods" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "environment" varchar(255), "active" boolean DEFAULT 't', "created_at" datetime, "updated_at" datetime) [0m
|
|
645
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160418')
|
|
646
|
+
Migrating to RenameFrozenToLocked (20120218160419)
|
|
647
|
+
[1m[36m (0.2ms)[0m [1mCREATE TEMPORARY TABLE "altered_adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "source_id" integer, "amount" decimal, "label" varchar(255), "source_type" varchar(255), "order_id" integer, "created_at" datetime, "updated_at" datetime, "mandatory" boolean, "locked" boolean, "originator_id" integer, "originator_type" varchar(255)) [0m
|
|
648
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("adjustments")
|
|
649
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_adjustments_on_order_id')[0m
|
|
650
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_adjustments")
|
|
651
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "temp_index_altered_adjustments_on_order_id" ON "altered_adjustments" ("order_id")[0m
|
|
652
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "adjustments"
|
|
653
|
+
[1m[36m (0.3ms)[0m [1mDROP TABLE "adjustments"[0m
|
|
654
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "source_id" integer, "amount" decimal, "label" varchar(255), "source_type" varchar(255), "order_id" integer, "created_at" datetime, "updated_at" datetime, "mandatory" boolean, "locked" boolean, "originator_id" integer, "originator_type" varchar(255))
|
|
655
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_adjustments")[0m
|
|
656
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('temp_index_altered_adjustments_on_order_id')
|
|
657
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("adjustments")[0m
|
|
658
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_adjustments_on_order_id" ON "adjustments" ("order_id")
|
|
659
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "altered_adjustments"[0m
|
|
660
|
+
[1m[35m (0.1ms)[0m DROP TABLE "altered_adjustments"
|
|
661
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160419')[0m
|
|
662
|
+
Migrating to MoveSpecialInstructionsToOrders (20120218160420)
|
|
663
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "orders" ADD "special_instructions" text
|
|
664
|
+
[1m[36m (0.1ms)[0m [1mUPDATE orders SET special_instructions = (SELECT special_instructions FROM checkouts WHERE order_id = orders.id)[0m
|
|
665
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160420')
|
|
666
|
+
Migrating to CreateLogEntries (20120218160421)
|
|
667
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "log_entries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "source_id" integer, "source_type" varchar(255), "details" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
668
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160421')
|
|
669
|
+
Migrating to MigrateTransactionsToPaymentState (20120218160422)
|
|
670
|
+
[1m[36mTransaction Load (0.3ms)[0m [1mSELECT * FROM transactions GROUP BY payment_id HAVING COUNT(payment_id) = 1 AND txn_type = 1[0m
|
|
671
|
+
[1m[35mTransaction Load (0.1ms)[0m SELECT * FROM transactions WHERE txn_type = 4
|
|
672
|
+
[1m[36mTransaction Load (0.1ms)[0m [1mSELECT * FROM transactions WHERE txn_type = 2[0m
|
|
673
|
+
[1m[35mTransaction Load (0.1ms)[0m SELECT * FROM transactions WHERE txn_type = 3
|
|
674
|
+
[1m[36mTransaction Load (0.1ms)[0m [1mSELECT * FROM transactions WHERE txn_type = 5[0m
|
|
675
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160422')
|
|
676
|
+
Migrating to DeleteInProgressOrders (20120218160423)
|
|
677
|
+
[1m[36m (0.2ms)[0m [1mDELETE FROM orders WHERE orders.state = 'in_progress'[0m
|
|
678
|
+
[1m[35m (0.1ms)[0m DELETE FROM adjustments WHERE order_id NOT IN (SELECT id FROM orders)
|
|
679
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM checkouts WHERE order_id NOT IN (SELECT id FROM orders)[0m
|
|
680
|
+
[1m[35m (0.1ms)[0m DELETE FROM shipments WHERE order_id NOT IN (SELECT id FROM orders)
|
|
681
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM payments WHERE order_id NOT IN (SELECT id FROM orders)[0m
|
|
682
|
+
[1m[35m (0.1ms)[0m DELETE FROM line_items WHERE order_id NOT IN (SELECT id FROM orders)
|
|
683
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM inventory_units WHERE order_id NOT IN (SELECT id FROM orders)[0m
|
|
684
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160423')
|
|
685
|
+
Migrating to MigrateCheckoutToOrders (20120218160424)
|
|
686
|
+
[1m[36m (0.3ms)[0m [1mSELECT * FROM orders[0m
|
|
687
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160424')
|
|
688
|
+
Migrating to RemoveShippedState (20120218160425)
|
|
689
|
+
[1m[36m (0.2ms)[0m [1mUPDATE orders SET state = 'complete' WHERE state = 'shipped'[0m
|
|
690
|
+
[1m[35m (0.1ms)[0m SELECT shipments.id FROM shipments WHERE order_id IN (SELECT orders.id FROM orders WHERE orders.state = 'shipped')
|
|
691
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160425')[0m
|
|
692
|
+
Migrating to PreventNilPaymentTotal (20120218160426)
|
|
693
|
+
[1m[35m (0.2ms)[0m UPDATE orders SET payment_total = 0.0 WHERE payment_total IS NULL
|
|
694
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160426')[0m
|
|
695
|
+
Migrating to PreventNilEmail (20120218160427)
|
|
696
|
+
[1m[35m (0.2ms)[0m UPDATE orders SET email = 'guest@example.com' WHERE email IS NULL
|
|
697
|
+
[1m[36m (0.1ms)[0m [1mUPDATE orders SET email = 'guest@example.com' WHERE email = ''[0m
|
|
698
|
+
[1m[35m (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160427')
|
|
699
|
+
Migrating to GenerateAnonymousUsers (20120218160428)
|
|
700
|
+
[1m[36mSpree::Order Load (0.1ms)[0m [1mSELECT "orders".* FROM "orders" WHERE "orders"."user_id" IS NULL[0m
|
|
701
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160428')
|
|
702
|
+
Migrating to UpdateOrderState (20120218160429)
|
|
703
|
+
[1m[36mSpree::Order Load (0.2ms)[0m [1mSELECT "orders".* FROM "orders" [0m
|
|
704
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160429')
|
|
705
|
+
Migrating to CleanupLegacyTables (20120218160430)
|
|
706
|
+
[1m[36m (0.3ms)[0m [1mDROP TABLE "checkouts"[0m
|
|
707
|
+
[1m[35m (0.2ms)[0m DROP TABLE "transactions"
|
|
708
|
+
[1m[36m (0.2ms)[0m [1mDROP TABLE "open_id_authentication_associations"[0m
|
|
709
|
+
[1m[35m (0.1ms)[0m DROP TABLE "open_id_authentication_nonces"
|
|
710
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160430')[0m
|
|
711
|
+
Migrating to RemoveNumberAndCvvFromCredicard (20120218160431)
|
|
712
|
+
[1m[35m (0.2ms)[0m CREATE TEMPORARY TABLE "altered_creditcards" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number" text, "verification_value" text, "month" varchar(255), "year" varchar(255), "cc_type" varchar(255), "last_digits" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "start_month" varchar(255), "start_year" varchar(255), "issue_number" varchar(255), "address_id" integer, "created_at" datetime, "updated_at" datetime, "gateway_customer_profile_id" varchar(255), "gateway_payment_profile_id" varchar(255))
|
|
713
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("creditcards")[0m
|
|
714
|
+
[1m[35m (0.2ms)[0m SELECT * FROM "creditcards"
|
|
715
|
+
[1m[36m (0.2ms)[0m [1mDROP TABLE "creditcards"[0m
|
|
716
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "creditcards" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "verification_value" text, "month" varchar(255), "year" varchar(255), "cc_type" varchar(255), "last_digits" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "start_month" varchar(255), "start_year" varchar(255), "issue_number" varchar(255), "address_id" integer, "created_at" datetime, "updated_at" datetime, "gateway_customer_profile_id" varchar(255), "gateway_payment_profile_id" varchar(255))
|
|
717
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_creditcards")[0m
|
|
718
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_creditcards"
|
|
719
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_creditcards"[0m
|
|
720
|
+
[1m[35m (0.2ms)[0m CREATE TEMPORARY TABLE "altered_creditcards" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "verification_value" text, "month" varchar(255), "year" varchar(255), "cc_type" varchar(255), "last_digits" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "start_month" varchar(255), "start_year" varchar(255), "issue_number" varchar(255), "address_id" integer, "created_at" datetime, "updated_at" datetime, "gateway_customer_profile_id" varchar(255), "gateway_payment_profile_id" varchar(255))
|
|
721
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("creditcards")[0m
|
|
722
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "creditcards"
|
|
723
|
+
[1m[36m (0.2ms)[0m [1mDROP TABLE "creditcards"[0m
|
|
724
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "creditcards" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "month" varchar(255), "year" varchar(255), "cc_type" varchar(255), "last_digits" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "start_month" varchar(255), "start_year" varchar(255), "issue_number" varchar(255), "address_id" integer, "created_at" datetime, "updated_at" datetime, "gateway_customer_profile_id" varchar(255), "gateway_payment_profile_id" varchar(255))
|
|
725
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_creditcards")[0m
|
|
726
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_creditcards"
|
|
727
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_creditcards"[0m
|
|
728
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160431')
|
|
729
|
+
Migrating to DropAnonymousFieldForUser (20120218160432)
|
|
730
|
+
[1m[36m (0.2ms)[0m [1mCREATE TEMPORARY TABLE "altered_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "crypted_password" varchar(128), "salt" varchar(128), "email" varchar(255), "remember_token" varchar(255), "remember_token_expires_at" varchar(255), "persistence_token" varchar(255), "single_access_token" varchar(255), "perishable_token" varchar(255), "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime, "current_login_at" datetime, "last_login_at" datetime, "current_login_ip" varchar(255), "last_login_ip" varchar(255), "login" varchar(255), "ship_address_id" integer, "bill_address_id" integer, "created_at" datetime, "updated_at" datetime, "openid_identifier" varchar(255), "anonymous" boolean) [0m
|
|
731
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
|
732
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_persistence_token')[0m
|
|
733
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_openid_identifier')
|
|
734
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_users")[0m
|
|
735
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_users_on_persistence_token" ON "altered_users" ("persistence_token")
|
|
736
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_users")[0m
|
|
737
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('temp_index_altered_users_on_persistence_token')
|
|
738
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "temp_index_altered_users_on_openid_identifier" ON "altered_users" ("openid_identifier")[0m
|
|
739
|
+
[1m[35m (0.2ms)[0m SELECT * FROM "users"
|
|
740
|
+
[1m[36m (0.3ms)[0m [1mDROP TABLE "users"[0m
|
|
741
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "crypted_password" varchar(128), "salt" varchar(128), "email" varchar(255), "remember_token" varchar(255), "remember_token_expires_at" varchar(255), "persistence_token" varchar(255), "single_access_token" varchar(255), "perishable_token" varchar(255), "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime, "current_login_at" datetime, "last_login_at" datetime, "current_login_ip" varchar(255), "last_login_ip" varchar(255), "login" varchar(255), "ship_address_id" integer, "bill_address_id" integer, "created_at" datetime, "updated_at" datetime, "openid_identifier" varchar(255))
|
|
742
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_users")[0m
|
|
743
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('temp_index_altered_users_on_openid_identifier')
|
|
744
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('temp_index_altered_users_on_persistence_token')[0m
|
|
745
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
|
746
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_users_on_openid_identifier" ON "users" ("openid_identifier")[0m
|
|
747
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("users")
|
|
748
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_openid_identifier')[0m
|
|
749
|
+
[1m[35m (0.2ms)[0m CREATE INDEX "index_users_on_persistence_token" ON "users" ("persistence_token")
|
|
750
|
+
[1m[36m (0.3ms)[0m [1mSELECT * FROM "altered_users"[0m
|
|
751
|
+
[1m[35m (0.2ms)[0m DROP TABLE "altered_users"
|
|
752
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160432')[0m
|
|
753
|
+
Migrating to RenamedRmaCancelledState (20120218160433)
|
|
754
|
+
[1m[35m (0.1ms)[0m UPDATE return_authorizations SET state = 'canceled' WHERE state = 'cancelled'
|
|
755
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160433')[0m
|
|
756
|
+
Migrating to FixProblematicIndexNames (20120218160434)
|
|
757
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("preferences")
|
|
758
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("preferences")[0m
|
|
759
|
+
[1m[35m (0.3ms)[0m CREATE UNIQUE INDEX "ix_prefs_on_owner_attr_pref" ON "preferences" ("owner_id", "owner_type", "name", "group_id", "group_type")
|
|
760
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160434')[0m
|
|
761
|
+
Migrating to AddPositionToVariants (20120218160435)
|
|
762
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "variants" ADD "position" integer
|
|
763
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160435')[0m
|
|
764
|
+
Migrating to AddNextStateToStateEvents (20120218160436)
|
|
765
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "state_events" ADD "next_state" varchar(255)
|
|
766
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160436')[0m
|
|
767
|
+
Migrating to AddPositionToOptionTypes (20120218160437)
|
|
768
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "option_types" ADD "position" integer DEFAULT 0 NOT NULL
|
|
769
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160437')[0m
|
|
770
|
+
Migrating to RemoveTrailingSlashesInTaxonPermalinks (20120218160438)
|
|
771
|
+
[1m[35m (0.2ms)[0m SELECT * FROM taxons
|
|
772
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160438')[0m
|
|
773
|
+
Migrating to CreateActivators (20120218160439)
|
|
774
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "activators" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "expires_at" datetime, "created_at" datetime, "updated_at" datetime, "starts_at" datetime, "name" varchar(255), "event_name" varchar(255), "type" varchar(255))
|
|
775
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160439')[0m
|
|
776
|
+
Migrating to EligibleForAdjustments (20120218160440)
|
|
777
|
+
[1m[35m (0.5ms)[0m ALTER TABLE "adjustments" ADD "eligible" boolean DEFAULT 't'
|
|
778
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160440')[0m
|
|
779
|
+
Migrating to NamespaceTopLevelModels (20120218160441)
|
|
780
|
+
[1m[35m (0.5ms)[0m ALTER TABLE "activators" RENAME TO "spree_activators"
|
|
781
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "addresses" RENAME TO "spree_addresses"[0m
|
|
782
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "adjustments" RENAME TO "spree_adjustments"
|
|
783
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "configurations" RENAME TO "spree_configurations"[0m
|
|
784
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "assets" RENAME TO "spree_assets"
|
|
785
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "calculators" RENAME TO "spree_calculators"[0m
|
|
786
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "countries" RENAME TO "spree_countries"
|
|
787
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "creditcards" RENAME TO "spree_creditcards"[0m
|
|
788
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "gateways" RENAME TO "spree_gateways"
|
|
789
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "inventory_units" RENAME TO "spree_inventory_units"[0m
|
|
790
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "line_items" RENAME TO "spree_line_items"
|
|
791
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "log_entries" RENAME TO "spree_log_entries"[0m
|
|
792
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "mail_methods" RENAME TO "spree_mail_methods"
|
|
793
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "option_types" RENAME TO "spree_option_types"[0m
|
|
794
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "option_values" RENAME TO "spree_option_values"
|
|
795
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "option_types_prototypes" RENAME TO "spree_option_types_prototypes"[0m
|
|
796
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "option_values_variants" RENAME TO "spree_option_values_variants"
|
|
797
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "orders" RENAME TO "spree_orders"[0m
|
|
798
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "payments" RENAME TO "spree_payments"
|
|
799
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "payment_methods" RENAME TO "spree_payment_methods"[0m
|
|
800
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "preferences" RENAME TO "spree_preferences"
|
|
801
|
+
[1m[36m (0.5ms)[0m [1mALTER TABLE "products" RENAME TO "spree_products"[0m
|
|
802
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "product_groups" RENAME TO "spree_product_groups"
|
|
803
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "product_groups_products" RENAME TO "spree_product_groups_products"[0m
|
|
804
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "product_option_types" RENAME TO "spree_product_option_types"
|
|
805
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "product_properties" RENAME TO "spree_product_properties"[0m
|
|
806
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "product_scopes" RENAME TO "spree_product_scopes"
|
|
807
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "products_taxons" RENAME TO "spree_products_taxons"[0m
|
|
808
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "properties" RENAME TO "spree_properties"
|
|
809
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "prototypes" RENAME TO "spree_prototypes"[0m
|
|
810
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "properties_prototypes" RENAME TO "spree_properties_prototypes"
|
|
811
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "return_authorizations" RENAME TO "spree_return_authorizations"[0m
|
|
812
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "roles" RENAME TO "spree_roles"
|
|
813
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "roles_users" RENAME TO "spree_roles_users"[0m
|
|
814
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "shipments" RENAME TO "spree_shipments"
|
|
815
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "shipping_categories" RENAME TO "spree_shipping_categories"[0m
|
|
816
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "shipping_methods" RENAME TO "spree_shipping_methods"
|
|
817
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "states" RENAME TO "spree_states"[0m
|
|
818
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "state_events" RENAME TO "spree_state_events"
|
|
819
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "tax_categories" RENAME TO "spree_tax_categories"[0m
|
|
820
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "tax_rates" RENAME TO "spree_tax_rates"
|
|
821
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "taxons" RENAME TO "spree_taxons"[0m
|
|
822
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "taxonomies" RENAME TO "spree_taxonomies"
|
|
823
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "trackers" RENAME TO "spree_trackers"[0m
|
|
824
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "users" RENAME TO "spree_users"
|
|
825
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "variants" RENAME TO "spree_variants"[0m
|
|
826
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "zones" RENAME TO "spree_zones"
|
|
827
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "zone_members" RENAME TO "spree_zone_members"[0m
|
|
828
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160441')
|
|
829
|
+
Migrating to MigrateNamespacedPolymorphicModels (20120218160442)
|
|
830
|
+
[1m[36m (0.1ms)[0m [1mUPDATE spree_payments SET source_type = ('Spree::' || source_type) where source_type NOT LIKE 'Spree::%' AND source_type IS NOT NULL[0m
|
|
831
|
+
[1m[35m (0.1ms)[0m UPDATE spree_adjustments SET source_type = ('Spree::' || source_type) where source_type NOT LIKE 'Spree::%' AND source_type IS NOT NULL
|
|
832
|
+
[1m[36m (0.1ms)[0m [1mUPDATE spree_log_entries SET source_type = ('Spree::' || source_type) where source_type NOT LIKE 'Spree::%' AND source_type IS NOT NULL[0m
|
|
833
|
+
[1m[35m (0.1ms)[0m UPDATE spree_adjustments SET originator_type = ('Spree::' || originator_type) where originator_type NOT LIKE 'Spree::%' AND originator_type IS NOT NULL
|
|
834
|
+
[1m[36m (0.1ms)[0m [1mUPDATE spree_calculators SET calculable_type = ('Spree::' || calculable_type) where calculable_type NOT LIKE 'Spree::%' AND calculable_type IS NOT NULL[0m
|
|
835
|
+
[1m[35m (0.1ms)[0m UPDATE spree_preferences SET owner_type = ('Spree::' || owner_type) where owner_type NOT LIKE 'Spree::%' AND owner_type IS NOT NULL
|
|
836
|
+
[1m[36m (0.1ms)[0m [1mUPDATE spree_state_events SET stateful_type = ('Spree::' || stateful_type) where stateful_type NOT LIKE 'Spree::%' AND stateful_type IS NOT NULL[0m
|
|
837
|
+
[1m[35m (0.1ms)[0m UPDATE spree_activators SET type = ('Spree::' || type) where type NOT LIKE 'Spree::%' AND type IS NOT NULL
|
|
838
|
+
[1m[36m (0.1ms)[0m [1mUPDATE spree_assets SET type = ('Spree::' || type) where type NOT LIKE 'Spree::%' AND type IS NOT NULL[0m
|
|
839
|
+
[1m[35m (0.1ms)[0m UPDATE spree_calculators SET type = ('Spree::' || type) where type NOT LIKE 'Spree::%' AND type IS NOT NULL
|
|
840
|
+
[1m[36m (0.1ms)[0m [1mUPDATE spree_configurations SET type = ('Spree::' || type) where type NOT LIKE 'Spree::%' AND type IS NOT NULL[0m
|
|
841
|
+
[1m[35m (0.1ms)[0m UPDATE spree_gateways SET type = ('Spree::' || type) where type NOT LIKE 'Spree::%' AND type IS NOT NULL
|
|
842
|
+
[1m[36m (0.1ms)[0m [1mUPDATE spree_payment_methods SET type = ('Spree::' || type) where type NOT LIKE 'Spree::%' AND type IS NOT NULL[0m
|
|
843
|
+
[1m[35m (0.1ms)[0m UPDATE spree_assets SET viewable_type = ('Spree::' || viewable_type) where viewable_type NOT LIKE 'Spree::%' AND viewable_type IS NOT NULL
|
|
844
|
+
[1m[36m (0.1ms)[0m [1mUPDATE spree_zone_members SET zoneable_type = ('Spree::' || zoneable_type) where zoneable_type NOT LIKE 'Spree::%' AND zoneable_type IS NOT NULL[0m
|
|
845
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160442')
|
|
846
|
+
Migrating to MakeAdjustmentsPolymorphic (20120218160443)
|
|
847
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "spree_adjustments" ADD "adjustable_type" varchar(255)[0m
|
|
848
|
+
[1m[35m (0.2ms)[0m CREATE TEMPORARY TABLE "altered_spree_adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "source_id" integer, "amount" decimal, "label" varchar(255), "source_type" varchar(255), "adjustable_id" integer, "created_at" datetime, "updated_at" datetime, "mandatory" boolean, "locked" boolean, "originator_id" integer, "originator_type" varchar(255), "eligible" boolean DEFAULT 't', "adjustable_type" varchar(255))
|
|
849
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_adjustments")[0m
|
|
850
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_adjustments_on_order_id')
|
|
851
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_spree_adjustments")[0m
|
|
852
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_adjustments_on_order_id" ON "altered_spree_adjustments" ("adjustable_id")
|
|
853
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "spree_adjustments"[0m
|
|
854
|
+
[1m[35m (0.2ms)[0m DROP TABLE "spree_adjustments"
|
|
855
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "spree_adjustments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "source_id" integer, "amount" decimal, "label" varchar(255), "source_type" varchar(255), "adjustable_id" integer, "created_at" datetime, "updated_at" datetime, "mandatory" boolean, "locked" boolean, "originator_id" integer, "originator_type" varchar(255), "eligible" boolean DEFAULT 't', "adjustable_type" varchar(255)) [0m
|
|
856
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_spree_adjustments")
|
|
857
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('temp_index_adjustments_on_order_id')[0m
|
|
858
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_adjustments")
|
|
859
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_adjustments_on_order_id" ON "spree_adjustments" ("adjustable_id")[0m
|
|
860
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_spree_adjustments"
|
|
861
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_spree_adjustments"[0m
|
|
862
|
+
[1m[35m (0.0ms)[0m UPDATE spree_adjustments SET adjustable_type = 'Spree::Order'
|
|
863
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160443')[0m
|
|
864
|
+
Migrating to AddCompanyToAddresses (20120218160444)
|
|
865
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "spree_addresses" ADD "company" varchar(255)
|
|
866
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160444')[0m
|
|
867
|
+
Migrating to AddIncTaxToTaxRates (20120218160445)
|
|
868
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "spree_tax_rates" ADD "inc_tax" boolean DEFAULT 'f'
|
|
869
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160445')[0m
|
|
870
|
+
Migrating to RenameIncPriceAttribute (20120218160446)
|
|
871
|
+
[1m[35m (0.2ms)[0m CREATE TEMPORARY TABLE "altered_spree_tax_rates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal, "zone_id" integer, "tax_category_id" integer, "created_at" datetime, "updated_at" datetime, "included_in_price" boolean DEFAULT 'f')
|
|
872
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_tax_rates")[0m
|
|
873
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "spree_tax_rates"
|
|
874
|
+
[1m[36m (0.2ms)[0m [1mDROP TABLE "spree_tax_rates"[0m
|
|
875
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "spree_tax_rates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal, "zone_id" integer, "tax_category_id" integer, "created_at" datetime, "updated_at" datetime, "included_in_price" boolean DEFAULT 'f')
|
|
876
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_spree_tax_rates")[0m
|
|
877
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_spree_tax_rates"
|
|
878
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_spree_tax_rates"[0m
|
|
879
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160446')
|
|
880
|
+
Migrating to AddDefaultTaxZone (20120218160447)
|
|
881
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "spree_zones" ADD "default_tax" boolean DEFAULT 'f'[0m
|
|
882
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160447')
|
|
883
|
+
Migrating to AssociateShippingMethodsAndShippingCategories (20120218160448)
|
|
884
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "spree_shipping_methods" ADD "shipping_category_id" integer[0m
|
|
885
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160448')
|
|
886
|
+
Migrating to AddMatchRulesToShippingMethods (20120218160449)
|
|
887
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "spree_shipping_methods" ADD "match_none" boolean[0m
|
|
888
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "spree_shipping_methods" ADD "match_all" boolean
|
|
889
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "spree_shipping_methods" ADD "match_one" boolean[0m
|
|
890
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120218160449')
|
|
891
|
+
Migrating to NewPreferences (20120218160450)
|
|
892
|
+
[1m[36m (0.5ms)[0m [1mALTER TABLE "spree_preferences" ADD "key" varchar(255)[0m
|
|
893
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "spree_preferences" ADD "value_type" varchar(255)
|
|
894
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("spree_preferences")[0m
|
|
895
|
+
[1m[35m (0.1ms)[0m PRAGMA index_info('ix_prefs_on_owner_attr_pref')
|
|
896
|
+
[1m[36m (0.3ms)[0m [1mCREATE UNIQUE INDEX "index_spree_preferences_on_key" ON "spree_preferences" ("key")[0m
|
|
897
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("spree_preferences")
|
|
898
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_spree_preferences_on_key')[0m
|
|
899
|
+
[1m[35m (0.1ms)[0m PRAGMA index_info('ix_prefs_on_owner_attr_pref')
|
|
900
|
+
[1m[36m (0.2ms)[0m [1mDROP INDEX "ix_prefs_on_owner_attr_pref"[0m
|
|
901
|
+
[1m[35m (0.2ms)[0m CREATE TEMPORARY TABLE "altered_spree_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100) NOT NULL, "owner_id" integer(30) NOT NULL, "owner_type" varchar(50) NOT NULL, "group_id" integer, "group_type" varchar(50), "value" text(255), "created_at" datetime, "updated_at" datetime, "key" varchar(255), "value_type" varchar(255))
|
|
902
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_preferences")[0m
|
|
903
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_spree_preferences_on_key')
|
|
904
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_spree_preferences")[0m
|
|
905
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "temp_index_altered_spree_preferences_on_key" ON "altered_spree_preferences" ("key")
|
|
906
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "spree_preferences"[0m
|
|
907
|
+
[1m[35m (0.3ms)[0m DROP TABLE "spree_preferences"
|
|
908
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "spree_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100), "owner_id" integer(30) NOT NULL, "owner_type" varchar(50) NOT NULL, "group_id" integer, "group_type" varchar(50), "value" text(255), "created_at" datetime, "updated_at" datetime, "key" varchar(255), "value_type" varchar(255)) [0m
|
|
909
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_spree_preferences")
|
|
910
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('temp_index_altered_spree_preferences_on_key')[0m
|
|
911
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_preferences")
|
|
912
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "index_spree_preferences_on_key" ON "spree_preferences" ("key")[0m
|
|
913
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_spree_preferences"
|
|
914
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_spree_preferences"[0m
|
|
915
|
+
[1m[35m (0.1ms)[0m CREATE TEMPORARY TABLE "altered_spree_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100), "owner_id" integer(30) NOT NULL, "owner_type" varchar(50) NOT NULL, "group_id" integer, "group_type" varchar(50), "value" text(255), "created_at" datetime, "updated_at" datetime, "key" varchar(255), "value_type" varchar(255))
|
|
916
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_preferences")[0m
|
|
917
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_spree_preferences_on_key')
|
|
918
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_spree_preferences")[0m
|
|
919
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "temp_index_altered_spree_preferences_on_key" ON "altered_spree_preferences" ("key")
|
|
920
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "spree_preferences"[0m
|
|
921
|
+
[1m[35m (0.1ms)[0m DROP TABLE "spree_preferences"
|
|
922
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "spree_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100), "owner_id" integer(30), "owner_type" varchar(50) NOT NULL, "group_id" integer, "group_type" varchar(50), "value" text(255), "created_at" datetime, "updated_at" datetime, "key" varchar(255), "value_type" varchar(255)) [0m
|
|
923
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_spree_preferences")
|
|
924
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('temp_index_altered_spree_preferences_on_key')[0m
|
|
925
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_preferences")
|
|
926
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "index_spree_preferences_on_key" ON "spree_preferences" ("key")[0m
|
|
927
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_spree_preferences"
|
|
928
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_spree_preferences"[0m
|
|
929
|
+
[1m[35m (0.1ms)[0m CREATE TEMPORARY TABLE "altered_spree_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100), "owner_id" integer(30), "owner_type" varchar(50) NOT NULL, "group_id" integer, "group_type" varchar(50), "value" text(255), "created_at" datetime, "updated_at" datetime, "key" varchar(255), "value_type" varchar(255))
|
|
930
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_preferences")[0m
|
|
931
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_spree_preferences_on_key')
|
|
932
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_spree_preferences")[0m
|
|
933
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "temp_index_altered_spree_preferences_on_key" ON "altered_spree_preferences" ("key")
|
|
934
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "spree_preferences"[0m
|
|
935
|
+
[1m[35m (0.1ms)[0m DROP TABLE "spree_preferences"
|
|
936
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "spree_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100), "owner_id" integer(30), "owner_type" varchar(50), "group_id" integer, "group_type" varchar(50), "value" text(255), "created_at" datetime, "updated_at" datetime, "key" varchar(255), "value_type" varchar(255)) [0m
|
|
937
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_spree_preferences")
|
|
938
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('temp_index_altered_spree_preferences_on_key')[0m
|
|
939
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_preferences")
|
|
940
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "index_spree_preferences_on_key" ON "spree_preferences" ("key")[0m
|
|
941
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_spree_preferences"
|
|
942
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_spree_preferences"[0m
|
|
943
|
+
[1m[35m (0.1ms)[0m CREATE TEMPORARY TABLE "altered_spree_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100), "owner_id" integer(30), "owner_type" varchar(50), "group_id" integer, "group_type" varchar(50), "value" text(255), "created_at" datetime, "updated_at" datetime, "key" varchar(255), "value_type" varchar(255))
|
|
944
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_preferences")[0m
|
|
945
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_spree_preferences_on_key')
|
|
946
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("altered_spree_preferences")[0m
|
|
947
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "temp_index_altered_spree_preferences_on_key" ON "altered_spree_preferences" ("key")
|
|
948
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "spree_preferences"[0m
|
|
949
|
+
[1m[35m (0.1ms)[0m DROP TABLE "spree_preferences"
|
|
950
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "spree_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100), "owner_id" integer(30), "owner_type" varchar(50), "group_id" integer, "group_type" varchar(50), "value" text(255), "created_at" datetime, "updated_at" datetime, "key" varchar(255), "value_type" varchar(255)) [0m
|
|
951
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_spree_preferences")
|
|
952
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('temp_index_altered_spree_preferences_on_key')[0m
|
|
953
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_preferences")
|
|
954
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "index_spree_preferences_on_key" ON "spree_preferences" ("key")[0m
|
|
955
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_spree_preferences"
|
|
956
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_spree_preferences"[0m
|
|
957
|
+
[1m[35m (0.1ms)[0m CREATE TEMPORARY TABLE "altered_spree_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100), "owner_id" integer(30), "owner_type" varchar(50), "group_id" integer, "group_type" varchar(50), "value" text(255), "created_at" datetime, "updated_at" datetime, "key" varchar(255), "value_type" varchar(255))
|
|
958
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_preferences")[0m
|
|
959
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_spree_preferences_on_key')
|
|
960
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("altered_spree_preferences")[0m
|
|
961
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "temp_index_altered_spree_preferences_on_key" ON "altered_spree_preferences" ("key")
|
|
962
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "spree_preferences"[0m
|
|
963
|
+
[1m[35m (0.1ms)[0m DROP TABLE "spree_preferences"
|
|
964
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "spree_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100), "owner_id" integer(30), "owner_type" varchar(50), "group_id" integer, "group_type" varchar(50), "value" text(255), "created_at" datetime, "updated_at" datetime, "key" varchar(255), "value_type" varchar(255)) [0m
|
|
965
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("altered_spree_preferences")
|
|
966
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('temp_index_altered_spree_preferences_on_key')[0m
|
|
967
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_preferences")
|
|
968
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "index_spree_preferences_on_key" ON "spree_preferences" ("key")[0m
|
|
969
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_spree_preferences"
|
|
970
|
+
[1m[36m (0.1ms)[0m [1mDROP TABLE "altered_spree_preferences"[0m
|
|
971
|
+
[1m[35m (0.0ms)[0m select id, type from spree_configurations
|
|
972
|
+
[1m[36m (0.1ms)[0m [1mselect id, owner_id, name from spree_preferences where owner_type = 'Spree::Configuration'[0m
|
|
973
|
+
[1m[35mSpree::Preference Load (0.1ms)[0m SELECT "spree_preferences".* FROM "spree_preferences" WHERE "spree_preferences"."owner_type" = 'Spree::Calculator'
|
|
974
|
+
[1m[36mSpree::OldPrefs Load (0.1ms)[0m [1mSELECT "spree_preferences".* FROM "spree_preferences" WHERE "spree_preferences"."key" IS NULL[0m
|
|
975
|
+
[1m[35mSQL (0.0ms)[0m UPDATE "spree_preferences" SET "value_type" = 'string' WHERE "spree_preferences"."value_type" IS NULL
|
|
976
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160450')[0m
|
|
977
|
+
Migrating to AddDeletedAtToTaxCategory (20120218160451)
|
|
978
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "spree_tax_categories" ADD "deleted_at" datetime
|
|
979
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120218160451')[0m
|
|
980
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
981
|
+
[1m[36m (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
982
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("coupons")
|
|
983
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_activators")[0m
|
|
984
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_addresses")
|
|
985
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_addresses_on_lastname')[0m
|
|
986
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_addresses_on_firstname')
|
|
987
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_adjustments")[0m
|
|
988
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_adjustments_on_order_id')
|
|
989
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_assets")[0m
|
|
990
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_assets_on_viewable_type_and_type')
|
|
991
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_assets_on_viewable_id')[0m
|
|
992
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_calculators")
|
|
993
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_configurations")[0m
|
|
994
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_configurations_on_name_and_type')
|
|
995
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_countries")[0m
|
|
996
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_creditcards")
|
|
997
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_gateways")[0m
|
|
998
|
+
[1m[35m (83.2ms)[0m PRAGMA index_list("spree_inventory_units")
|
|
999
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_info('index_inventory_units_on_shipment_id')[0m
|
|
1000
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_inventory_units_on_order_id')
|
|
1001
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_inventory_units_on_variant_id')[0m
|
|
1002
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_line_items")
|
|
1003
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_line_items_on_variant_id')[0m
|
|
1004
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_line_items_on_order_id')
|
|
1005
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_log_entries")[0m
|
|
1006
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_mail_methods")
|
|
1007
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_option_types")[0m
|
|
1008
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_option_types_prototypes")
|
|
1009
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_option_values")[0m
|
|
1010
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_option_values_variants")
|
|
1011
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_option_values_variants_on_variant_id_and_option_value_id')[0m
|
|
1012
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_option_values_variants_on_variant_id')
|
|
1013
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_orders")[0m
|
|
1014
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_orders_on_number')
|
|
1015
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_payment_methods")[0m
|
|
1016
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_payments")
|
|
1017
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_preferences")[0m
|
|
1018
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_spree_preferences_on_key')
|
|
1019
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_product_groups")[0m
|
|
1020
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_product_groups_on_permalink')
|
|
1021
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_product_groups_on_name')[0m
|
|
1022
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_product_groups_products")
|
|
1023
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_product_option_types")[0m
|
|
1024
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_product_properties")
|
|
1025
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_product_properties_on_product_id')[0m
|
|
1026
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_product_scopes")
|
|
1027
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_product_scopes_on_product_group_id')[0m
|
|
1028
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_product_scopes_on_name')
|
|
1029
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_products")[0m
|
|
1030
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_products_on_permalink')
|
|
1031
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_products_on_name')[0m
|
|
1032
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_products_on_deleted_at')
|
|
1033
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_products_on_available_on')[0m
|
|
1034
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_products_taxons")
|
|
1035
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_products_taxons_on_taxon_id')[0m
|
|
1036
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_products_taxons_on_product_id')
|
|
1037
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_properties")[0m
|
|
1038
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_properties_prototypes")
|
|
1039
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_prototypes")[0m
|
|
1040
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_return_authorizations")
|
|
1041
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_roles")[0m
|
|
1042
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_roles_users")
|
|
1043
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_roles_users_on_user_id')[0m
|
|
1044
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_roles_users_on_role_id')
|
|
1045
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_shipments")[0m
|
|
1046
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_shipments_on_number')
|
|
1047
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_shipping_categories")[0m
|
|
1048
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_shipping_methods")
|
|
1049
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_state_events")[0m
|
|
1050
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_states")
|
|
1051
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_tax_categories")[0m
|
|
1052
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_tax_rates")
|
|
1053
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_taxonomies")[0m
|
|
1054
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_taxons")
|
|
1055
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_taxons_on_taxonomy_id')[0m
|
|
1056
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_taxons_on_parent_id')
|
|
1057
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_taxons_on_permalink')[0m
|
|
1058
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_trackers")
|
|
1059
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_users")[0m
|
|
1060
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_users_on_persistence_token')
|
|
1061
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_users_on_openid_identifier')[0m
|
|
1062
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_variants")
|
|
1063
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_variants_on_product_id')[0m
|
|
1064
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("spree_zone_members")
|
|
1065
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("spree_zones")[0m
|
|
1066
|
+
[1m[36m (1.3ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1067
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1068
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1069
|
+
[1m[36m (1.4ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1070
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1071
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1072
|
+
[1m[36m (1.4ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1073
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1074
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1075
|
+
[1m[36m (1.3ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1076
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1077
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1078
|
+
[1m[36m (1.4ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1079
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1080
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1081
|
+
[1m[36m (1.3ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1082
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1083
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1084
|
+
[1m[36m (1.4ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1085
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1086
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1087
|
+
[1m[36m (1.5ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1088
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1089
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1090
|
+
[1m[36m (1.5ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1091
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1092
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1093
|
+
[1m[36m (1.5ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1094
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1095
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1096
|
+
[1m[36m (1.5ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1097
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1098
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1099
|
+
[1m[36m (1.5ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1100
|
+
[1m[35mSpree::MailMethod Load (0.2ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1101
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1102
|
+
[1m[36m (1.5ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1103
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1104
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1105
|
+
[1m[36m (1.5ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1106
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1107
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1108
|
+
[1m[36m (1.6ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1109
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1110
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1111
|
+
[1m[36m (1.7ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1112
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1113
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1114
|
+
[1m[36m (2.4ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1115
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1116
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1117
|
+
[1m[36m (6.0ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1118
|
+
[1m[35mSpree::MailMethod Load (0.3ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1119
|
+
[1m[36mSpree::Property Load (0.2ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1120
|
+
[1m[36m (5.6ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1121
|
+
[1m[36m (2.4ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1122
|
+
[1m[35mSpree::MailMethod Load (0.2ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1123
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1124
|
+
[1m[36m (1.5ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1125
|
+
[1m[36m (1.5ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1126
|
+
[1m[35mSpree::MailMethod Load (0.5ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1127
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1128
|
+
[1m[36m (2.2ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1129
|
+
[1m[35mSpree::MailMethod Load (0.5ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1130
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1131
|
+
[1m[36m (1.5ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1132
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1133
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|
|
1134
|
+
[1m[36m (1.5ms)[0m [1mselect owner_id, owner_type, name, value from spree_preferences where `key` is null[0m
|
|
1135
|
+
[1m[35mSpree::MailMethod Load (0.1ms)[0m SELECT "spree_mail_methods".* FROM "spree_mail_methods" WHERE "spree_mail_methods"."environment" = 'test' LIMIT 1
|
|
1136
|
+
[1m[36mSpree::Property Load (0.1ms)[0m [1mSELECT "spree_properties".* FROM "spree_properties" WHERE "spree_properties"."name" = 'brand' LIMIT 1[0m
|