(0.5ms) SELECT sqlite_version(*)  (2.0ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.1ms) begin transaction ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2018-10-07 23:47:22.985794"], ["updated_at", "2018-10-07 23:47:22.985794"]]  (0.7ms) commit transaction  (0.1ms) SELECT sqlite_version(*)  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (0.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC Migrating to CreateActiveStorageTables (20181007234717)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "active_storage_blobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "filename" varchar NOT NULL, "content_type" varchar, "metadata" text, "byte_size" bigint NOT NULL, "checksum" varchar NOT NULL, "created_at" datetime NOT NULL)  (0.1ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")  (0.1ms) CREATE TABLE "active_storage_attachments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "record_type" varchar NOT NULL, "record_id" integer NOT NULL, "blob_id" integer NOT NULL, "created_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")  (0.1ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id") ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234717"]]  (0.9ms) commit transaction Migrating to SolidusOneFour (20181007234718)  (0.1ms) begin transaction  (0.0ms) DROP TABLE IF EXISTS "spree_users"  (0.3ms) CREATE TABLE "spree_users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "crypted_password" varchar(128), "salt" varchar(128), "email" varchar, "remember_token" varchar, "remember_token_expires_at" varchar, "persistence_token" varchar, "single_access_token" varchar, "perishable_token" varchar, "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, "last_login_ip" varchar, "login" varchar, "ship_address_id" integer, "bill_address_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar)  (0.0ms) DROP TABLE IF EXISTS "friendly_id_slugs"  (0.1ms) CREATE TABLE "friendly_id_slugs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "slug" varchar NOT NULL, "sluggable_id" integer NOT NULL, "sluggable_type" varchar(50), "scope" varchar, "created_at" datetime(6), "updated_at" datetime(6))  (0.5ms) CREATE UNIQUE INDEX "index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope" ON "friendly_id_slugs" ("slug", "sluggable_type", "scope")  (0.1ms) CREATE INDEX "index_friendly_id_slugs_on_slug_and_sluggable_type" ON "friendly_id_slugs" ("slug", "sluggable_type")  (0.1ms) CREATE INDEX "index_friendly_id_slugs_on_sluggable_id" ON "friendly_id_slugs" ("sluggable_id")  (0.1ms) CREATE INDEX "index_friendly_id_slugs_on_sluggable_type" ON "friendly_id_slugs" ("sluggable_type")  (0.0ms) DROP TABLE IF EXISTS "spree_addresses"  (0.1ms) CREATE TABLE "spree_addresses" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "firstname" varchar, "lastname" varchar, "address1" varchar, "address2" varchar, "city" varchar, "zipcode" varchar, "phone" varchar, "state_name" varchar, "alternative_phone" varchar, "company" varchar, "state_id" integer, "country_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_addresses_on_country_id" ON "spree_addresses" ("country_id")  (0.1ms) CREATE INDEX "index_addresses_on_firstname" ON "spree_addresses" ("firstname")  (0.1ms) CREATE INDEX "index_addresses_on_lastname" ON "spree_addresses" ("lastname")  (0.1ms) CREATE INDEX "index_spree_addresses_on_state_id" ON "spree_addresses" ("state_id")  (0.0ms) DROP TABLE IF EXISTS "spree_adjustment_reasons"  (0.1ms) CREATE TABLE "spree_adjustment_reasons" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "code" varchar, "active" boolean DEFAULT 1, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_adjustment_reasons_on_active" ON "spree_adjustment_reasons" ("active")  (0.6ms) CREATE INDEX "index_spree_adjustment_reasons_on_code" ON "spree_adjustment_reasons" ("code")  (0.0ms) DROP TABLE IF EXISTS "spree_adjustments"  (0.1ms) CREATE TABLE "spree_adjustments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "source_type" varchar, "source_id" integer, "adjustable_type" varchar, "adjustable_id" integer NOT NULL, "amount" decimal(10,2), "label" varchar, "eligible" boolean DEFAULT 1, "created_at" datetime(6), "updated_at" datetime(6), "order_id" integer NOT NULL, "included" boolean DEFAULT 0, "promotion_code_id" integer, "adjustment_reason_id" integer, "finalized" boolean DEFAULT 0 NOT NULL)  (0.1ms) CREATE INDEX "index_spree_adjustments_on_adjustable_id_and_adjustable_type" ON "spree_adjustments" ("adjustable_id", "adjustable_type")  (0.1ms) CREATE INDEX "index_adjustments_on_order_id" ON "spree_adjustments" ("adjustable_id")  (0.1ms) CREATE INDEX "index_spree_adjustments_on_eligible" ON "spree_adjustments" ("eligible")  (0.1ms) CREATE INDEX "index_spree_adjustments_on_order_id" ON "spree_adjustments" ("order_id")  (0.1ms) CREATE INDEX "index_spree_adjustments_on_promotion_code_id" ON "spree_adjustments" ("promotion_code_id")  (0.1ms) CREATE INDEX "index_spree_adjustments_on_source_id_and_source_type" ON "spree_adjustments" ("source_id", "source_type")  (0.0ms) DROP TABLE IF EXISTS "spree_assets"  (0.1ms) CREATE TABLE "spree_assets" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "viewable_type" varchar, "viewable_id" integer, "attachment_width" integer, "attachment_height" integer, "attachment_file_size" integer, "position" integer, "attachment_content_type" varchar, "attachment_file_name" varchar, "type" varchar(75), "attachment_updated_at" datetime, "alt" text, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_assets_on_viewable_id" ON "spree_assets" ("viewable_id")  (0.1ms) CREATE INDEX "index_assets_on_viewable_type_and_type" ON "spree_assets" ("viewable_type", "type")  (0.0ms) DROP TABLE IF EXISTS "spree_calculators"  (0.1ms) CREATE TABLE "spree_calculators" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "calculable_type" varchar, "calculable_id" integer, "created_at" datetime(6), "updated_at" datetime(6), "preferences" text)  (0.1ms) CREATE INDEX "index_spree_calculators_on_calculable_id_and_calculable_type" ON "spree_calculators" ("calculable_id", "calculable_type")  (0.1ms) CREATE INDEX "index_spree_calculators_on_id_and_type" ON "spree_calculators" ("id", "type")  (0.0ms) DROP TABLE IF EXISTS "spree_cartons"  (0.1ms) CREATE TABLE "spree_cartons" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar, "external_number" varchar, "stock_location_id" integer, "address_id" integer, "shipping_method_id" integer, "tracking" varchar, "shipped_at" datetime, "created_at" datetime(6), "updated_at" datetime(6), "imported_from_shipment_id" integer)  (0.1ms) CREATE INDEX "index_spree_cartons_on_external_number" ON "spree_cartons" ("external_number")  (0.1ms) CREATE UNIQUE INDEX "index_spree_cartons_on_imported_from_shipment_id" ON "spree_cartons" ("imported_from_shipment_id")  (0.1ms) CREATE UNIQUE INDEX "index_spree_cartons_on_number" ON "spree_cartons" ("number")  (0.1ms) CREATE INDEX "index_spree_cartons_on_stock_location_id" ON "spree_cartons" ("stock_location_id")  (0.0ms) DROP TABLE IF EXISTS "spree_countries"  (0.1ms) CREATE TABLE "spree_countries" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "iso_name" varchar, "iso" varchar, "iso3" varchar, "name" varchar, "numcode" integer, "states_required" boolean DEFAULT 0, "updated_at" datetime(6), "created_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_countries_on_iso" ON "spree_countries" ("iso")  (0.0ms) DROP TABLE IF EXISTS "spree_credit_cards"  (0.1ms) CREATE TABLE "spree_credit_cards" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "month" varchar, "year" varchar, "cc_type" varchar, "last_digits" varchar, "gateway_customer_profile_id" varchar, "gateway_payment_profile_id" varchar, "created_at" datetime(6), "updated_at" datetime(6), "name" varchar, "user_id" integer, "payment_method_id" integer, "default" boolean DEFAULT 0 NOT NULL, "address_id" integer)  (0.1ms) CREATE INDEX "index_spree_credit_cards_on_payment_method_id" ON "spree_credit_cards" ("payment_method_id")  (0.1ms) CREATE INDEX "index_spree_credit_cards_on_user_id" ON "spree_credit_cards" ("user_id")  (0.0ms) DROP TABLE IF EXISTS "spree_customer_returns"  (0.1ms) CREATE TABLE "spree_customer_returns" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar, "stock_location_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.0ms) DROP TABLE IF EXISTS "spree_inventory_units"  (0.1ms) CREATE TABLE "spree_inventory_units" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "state" varchar, "variant_id" integer, "order_id" integer, "shipment_id" integer, "created_at" datetime(6), "updated_at" datetime(6), "pending" boolean DEFAULT 1, "line_item_id" integer, "carton_id" integer)  (0.1ms) CREATE INDEX "index_spree_inventory_units_on_carton_id" ON "spree_inventory_units" ("carton_id")  (0.1ms) CREATE INDEX "index_spree_inventory_units_on_line_item_id" ON "spree_inventory_units" ("line_item_id")  (0.6ms) CREATE INDEX "index_inventory_units_on_order_id" ON "spree_inventory_units" ("order_id")  (0.1ms) CREATE INDEX "index_inventory_units_on_shipment_id" ON "spree_inventory_units" ("shipment_id")  (0.1ms) CREATE INDEX "index_inventory_units_on_variant_id" ON "spree_inventory_units" ("variant_id")  (0.0ms) DROP TABLE IF EXISTS "spree_line_item_actions"  (0.1ms) CREATE TABLE "spree_line_item_actions" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "line_item_id" integer NOT NULL, "action_id" integer NOT NULL, "quantity" integer DEFAULT 0, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_line_item_actions_on_action_id" ON "spree_line_item_actions" ("action_id")  (0.1ms) CREATE INDEX "index_spree_line_item_actions_on_line_item_id" ON "spree_line_item_actions" ("line_item_id")  (0.0ms) DROP TABLE IF EXISTS "spree_line_items"  (0.1ms) CREATE TABLE "spree_line_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "variant_id" integer, "order_id" integer, "quantity" integer NOT NULL, "price" decimal(10,2) NOT NULL, "created_at" datetime(6), "updated_at" datetime(6), "currency" varchar, "cost_price" decimal(10,2), "tax_category_id" integer, "adjustment_total" decimal(10,2) DEFAULT '0.0', "additional_tax_total" decimal(10,2) DEFAULT '0.0', "promo_total" decimal(10,2) DEFAULT '0.0', "included_tax_total" decimal(10,2) DEFAULT '0.0' NOT NULL)  (0.1ms) CREATE INDEX "index_spree_line_items_on_order_id" ON "spree_line_items" ("order_id")  (0.1ms) CREATE INDEX "index_spree_line_items_on_variant_id" ON "spree_line_items" ("variant_id")  (0.0ms) DROP TABLE IF EXISTS "spree_log_entries"  (0.1ms) CREATE TABLE "spree_log_entries" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "source_type" varchar, "source_id" integer, "details" text, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_log_entries_on_source_id_and_source_type" ON "spree_log_entries" ("source_id", "source_type")  (0.1ms) DROP TABLE IF EXISTS "spree_option_type_prototypes"  (0.2ms) CREATE TABLE "spree_option_type_prototypes" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "prototype_id" integer, "option_type_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) DROP TABLE IF EXISTS "spree_option_types"  (0.2ms) CREATE TABLE "spree_option_types" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100), "presentation" varchar(100), "position" integer DEFAULT 0 NOT NULL, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_option_types_on_position" ON "spree_option_types" ("position")  (0.0ms) DROP TABLE IF EXISTS "spree_option_values"  (0.1ms) CREATE TABLE "spree_option_values" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "name" varchar, "presentation" varchar, "option_type_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_option_values_on_option_type_id" ON "spree_option_values" ("option_type_id")  (0.1ms) CREATE INDEX "index_spree_option_values_on_position" ON "spree_option_values" ("position")  (0.0ms) DROP TABLE IF EXISTS "spree_option_values_variants"  (0.1ms) CREATE TABLE "spree_option_values_variants" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "variant_id" integer, "option_value_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_option_values_variants_on_variant_id_and_option_value_id" ON "spree_option_values_variants" ("variant_id", "option_value_id")  (0.1ms) CREATE INDEX "index_spree_option_values_variants_on_variant_id" ON "spree_option_values_variants" ("variant_id")  (0.0ms) DROP TABLE IF EXISTS "spree_order_mutexes"  (0.1ms) CREATE TABLE "spree_order_mutexes" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "order_id" integer NOT NULL, "created_at" datetime(6))  (0.1ms) CREATE UNIQUE INDEX "index_spree_order_mutexes_on_order_id" ON "spree_order_mutexes" ("order_id")  (0.0ms) DROP TABLE IF EXISTS "spree_orders"  (0.2ms) CREATE TABLE "spree_orders" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar(32), "item_total" decimal(10,2) DEFAULT '0.0' NOT NULL, "total" decimal(10,2) DEFAULT '0.0' NOT NULL, "state" varchar, "adjustment_total" decimal(10,2) DEFAULT '0.0' NOT NULL, "user_id" integer, "completed_at" datetime, "bill_address_id" integer, "ship_address_id" integer, "payment_total" decimal(10,2) DEFAULT '0.0', "shipment_state" varchar, "payment_state" varchar, "email" varchar, "special_instructions" text, "created_at" datetime(6), "updated_at" datetime(6), "currency" varchar, "last_ip_address" varchar, "created_by_id" integer, "shipment_total" decimal(10,2) DEFAULT '0.0' NOT NULL, "additional_tax_total" decimal(10,2) DEFAULT '0.0', "promo_total" decimal(10,2) DEFAULT '0.0', "channel" varchar DEFAULT 'spree', "included_tax_total" decimal(10,2) DEFAULT '0.0' NOT NULL, "item_count" integer DEFAULT 0, "approver_id" integer, "approved_at" datetime, "confirmation_delivered" boolean DEFAULT 0, "guest_token" varchar, "canceled_at" datetime, "canceler_id" integer, "store_id" integer, "approver_name" varchar, "frontend_viewable" boolean DEFAULT 1 NOT NULL)  (0.1ms) CREATE INDEX "index_spree_orders_on_approver_id" ON "spree_orders" ("approver_id")  (0.1ms) CREATE INDEX "index_spree_orders_on_bill_address_id" ON "spree_orders" ("bill_address_id")  (0.1ms) CREATE INDEX "index_spree_orders_on_completed_at" ON "spree_orders" ("completed_at")  (0.1ms) CREATE INDEX "index_spree_orders_on_created_by_id" ON "spree_orders" ("created_by_id")  (0.1ms) CREATE INDEX "index_spree_orders_on_guest_token" ON "spree_orders" ("guest_token")  (0.1ms) CREATE INDEX "index_spree_orders_on_number" ON "spree_orders" ("number")  (0.1ms) CREATE INDEX "index_spree_orders_on_ship_address_id" ON "spree_orders" ("ship_address_id")  (0.1ms) CREATE INDEX "index_spree_orders_on_user_id_and_created_by_id" ON "spree_orders" ("user_id", "created_by_id")  (0.1ms) CREATE INDEX "index_spree_orders_on_user_id" ON "spree_orders" ("user_id")  (0.0ms) DROP TABLE IF EXISTS "spree_orders_promotions"  (0.1ms) CREATE TABLE "spree_orders_promotions" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "order_id" integer, "promotion_id" integer, "promotion_code_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.3ms) CREATE INDEX "index_spree_orders_promotions_on_order_id_and_promotion_id" ON "spree_orders_promotions" ("order_id", "promotion_id")  (0.1ms) CREATE INDEX "index_spree_orders_promotions_on_promotion_code_id" ON "spree_orders_promotions" ("promotion_code_id")  (0.0ms) DROP TABLE IF EXISTS "spree_payment_capture_events"  (0.1ms) CREATE TABLE "spree_payment_capture_events" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal(10,2) DEFAULT '0.0', "payment_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_payment_capture_events_on_payment_id" ON "spree_payment_capture_events" ("payment_id")  (0.0ms) DROP TABLE IF EXISTS "spree_payment_methods"  (0.1ms) CREATE TABLE "spree_payment_methods" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "name" varchar, "description" text, "active" boolean DEFAULT 1, "deleted_at" datetime, "created_at" datetime(6), "updated_at" datetime(6), "display_on" varchar, "auto_capture" boolean, "preferences" text, "preference_source" varchar, "position" integer DEFAULT 0)  (0.1ms) CREATE INDEX "index_spree_payment_methods_on_id_and_type" ON "spree_payment_methods" ("id", "type")  (0.0ms) DROP TABLE IF EXISTS "spree_payments"  (0.1ms) CREATE TABLE "spree_payments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal(10,2) DEFAULT '0.0' NOT NULL, "order_id" integer, "source_type" varchar, "source_id" integer, "payment_method_id" integer, "state" varchar, "response_code" varchar, "avs_response" varchar, "created_at" datetime(6), "updated_at" datetime(6), "number" varchar, "cvv_response_code" varchar, "cvv_response_message" varchar)  (0.1ms) CREATE INDEX "index_spree_payments_on_order_id" ON "spree_payments" ("order_id")  (0.1ms) CREATE INDEX "index_spree_payments_on_payment_method_id" ON "spree_payments" ("payment_method_id")  (0.1ms) CREATE INDEX "index_spree_payments_on_source_id_and_source_type" ON "spree_payments" ("source_id", "source_type")  (0.1ms) DROP TABLE IF EXISTS "spree_preferences"  (0.2ms) CREATE TABLE "spree_preferences" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "value" text, "key" varchar, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE UNIQUE INDEX "index_spree_preferences_on_key" ON "spree_preferences" ("key")  (0.0ms) DROP TABLE IF EXISTS "spree_prices"  (0.1ms) CREATE TABLE "spree_prices" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "variant_id" integer NOT NULL, "amount" decimal(10,2), "currency" varchar, "deleted_at" datetime, "is_default" boolean DEFAULT 1 NOT NULL, "created_at" datetime(6), "updated_at" datetime(6), "country_iso" varchar(2))  (0.1ms) CREATE INDEX "index_spree_prices_on_country_iso" ON "spree_prices" ("country_iso")  (0.1ms) CREATE INDEX "index_spree_prices_on_variant_id_and_currency" ON "spree_prices" ("variant_id", "currency")  (0.0ms) DROP TABLE IF EXISTS "spree_product_option_types"  (0.1ms) CREATE TABLE "spree_product_option_types" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer, "product_id" integer, "option_type_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_product_option_types_on_option_type_id" ON "spree_product_option_types" ("option_type_id")  (0.1ms) CREATE INDEX "index_spree_product_option_types_on_position" ON "spree_product_option_types" ("position")  (0.1ms) CREATE INDEX "index_spree_product_option_types_on_product_id" ON "spree_product_option_types" ("product_id")  (0.0ms) DROP TABLE IF EXISTS "spree_product_promotion_rules"  (0.1ms) CREATE TABLE "spree_product_promotion_rules" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "promotion_rule_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_products_promotion_rules_on_product_id" ON "spree_product_promotion_rules" ("product_id")  (0.1ms) CREATE INDEX "index_products_promotion_rules_on_promotion_rule_id" ON "spree_product_promotion_rules" ("promotion_rule_id")  (0.0ms) DROP TABLE IF EXISTS "spree_product_properties"  (0.1ms) CREATE TABLE "spree_product_properties" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "value" varchar, "product_id" integer, "property_id" integer, "created_at" datetime(6), "updated_at" datetime(6), "position" integer DEFAULT 0)  (0.1ms) CREATE INDEX "index_spree_product_properties_on_position" ON "spree_product_properties" ("position")  (0.1ms) CREATE INDEX "index_product_properties_on_product_id" ON "spree_product_properties" ("product_id")  (0.1ms) CREATE INDEX "index_spree_product_properties_on_property_id" ON "spree_product_properties" ("property_id")  (0.0ms) DROP TABLE IF EXISTS "spree_products"  (0.2ms) CREATE TABLE "spree_products" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar DEFAULT '' NOT NULL, "description" text, "available_on" datetime, "deleted_at" datetime, "slug" varchar, "meta_description" text, "meta_keywords" varchar, "tax_category_id" integer, "shipping_category_id" integer, "created_at" datetime(6), "updated_at" datetime(6), "promotionable" boolean DEFAULT 1, "meta_title" varchar)  (0.1ms) CREATE INDEX "index_spree_products_on_available_on" ON "spree_products" ("available_on")  (0.2ms) CREATE INDEX "index_spree_products_on_deleted_at" ON "spree_products" ("deleted_at")  (0.2ms) CREATE INDEX "index_spree_products_on_name" ON "spree_products" ("name")  (0.1ms) CREATE UNIQUE INDEX "index_spree_products_on_slug" ON "spree_products" ("slug")  (0.0ms) DROP TABLE IF EXISTS "spree_products_taxons"  (0.1ms) CREATE TABLE "spree_products_taxons" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "taxon_id" integer, "position" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_products_taxons_on_position" ON "spree_products_taxons" ("position")  (0.1ms) CREATE INDEX "index_spree_products_taxons_on_product_id" ON "spree_products_taxons" ("product_id")  (0.1ms) CREATE INDEX "index_spree_products_taxons_on_taxon_id" ON "spree_products_taxons" ("taxon_id")  (0.0ms) DROP TABLE IF EXISTS "spree_promotion_action_line_items"  (0.1ms) CREATE TABLE "spree_promotion_action_line_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "promotion_action_id" integer, "variant_id" integer, "quantity" integer DEFAULT 1, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_promotion_action_line_items_on_promotion_action_id" ON "spree_promotion_action_line_items" ("promotion_action_id")  (0.1ms) CREATE INDEX "index_spree_promotion_action_line_items_on_variant_id" ON "spree_promotion_action_line_items" ("variant_id")  (0.0ms) DROP TABLE IF EXISTS "spree_promotion_actions"  (0.1ms) CREATE TABLE "spree_promotion_actions" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "promotion_id" integer, "position" integer, "type" varchar, "deleted_at" datetime, "preferences" text, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_promotion_actions_on_deleted_at" ON "spree_promotion_actions" ("deleted_at")  (0.1ms) CREATE INDEX "index_spree_promotion_actions_on_id_and_type" ON "spree_promotion_actions" ("id", "type")  (0.1ms) CREATE INDEX "index_spree_promotion_actions_on_promotion_id" ON "spree_promotion_actions" ("promotion_id")  (0.0ms) DROP TABLE IF EXISTS "spree_promotion_categories"  (0.1ms) CREATE TABLE "spree_promotion_categories" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime(6), "updated_at" datetime(6), "code" varchar)  (0.0ms) DROP TABLE IF EXISTS "spree_promotion_codes"  (0.1ms) CREATE TABLE "spree_promotion_codes" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "promotion_id" integer NOT NULL, "value" varchar NOT NULL, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_promotion_codes_on_promotion_id" ON "spree_promotion_codes" ("promotion_id")  (0.1ms) CREATE UNIQUE INDEX "index_spree_promotion_codes_on_value" ON "spree_promotion_codes" ("value")  (0.0ms) DROP TABLE IF EXISTS "spree_promotion_rule_taxons"  (0.1ms) CREATE TABLE "spree_promotion_rule_taxons" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "taxon_id" integer, "promotion_rule_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_promotion_rule_taxons_on_promotion_rule_id" ON "spree_promotion_rule_taxons" ("promotion_rule_id")  (0.1ms) CREATE INDEX "index_spree_promotion_rule_taxons_on_taxon_id" ON "spree_promotion_rule_taxons" ("taxon_id")  (0.0ms) DROP TABLE IF EXISTS "spree_promotion_rules"  (0.1ms) CREATE TABLE "spree_promotion_rules" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "promotion_id" integer, "product_group_id" integer, "type" varchar, "created_at" datetime(6), "updated_at" datetime(6), "code" varchar, "preferences" text)  (0.1ms) CREATE INDEX "index_promotion_rules_on_product_group_id" ON "spree_promotion_rules" ("product_group_id")  (0.1ms) CREATE INDEX "index_spree_promotion_rules_on_promotion_id" ON "spree_promotion_rules" ("promotion_id")  (0.0ms) DROP TABLE IF EXISTS "spree_promotion_rules_users"  (0.1ms) CREATE TABLE "spree_promotion_rules_users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "promotion_rule_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_promotion_rules_users_on_promotion_rule_id" ON "spree_promotion_rules_users" ("promotion_rule_id")  (0.1ms) CREATE INDEX "index_promotion_rules_users_on_user_id" ON "spree_promotion_rules_users" ("user_id")  (0.1ms) DROP TABLE IF EXISTS "spree_promotions"  (0.1ms) CREATE TABLE "spree_promotions" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar, "expires_at" datetime, "starts_at" datetime, "name" varchar, "type" varchar, "usage_limit" integer, "match_policy" varchar DEFAULT 'all', "code" varchar, "advertise" boolean DEFAULT 0, "path" varchar, "created_at" datetime(6), "updated_at" datetime(6), "promotion_category_id" integer, "per_code_usage_limit" integer, "apply_automatically" boolean DEFAULT 0)  (0.1ms) CREATE INDEX "index_spree_promotions_on_advertise" ON "spree_promotions" ("advertise")  (0.1ms) CREATE INDEX "index_spree_promotions_on_apply_automatically" ON "spree_promotions" ("apply_automatically")  (0.1ms) CREATE INDEX "index_spree_promotions_on_code" ON "spree_promotions" ("code")  (0.1ms) CREATE INDEX "index_spree_promotions_on_expires_at" ON "spree_promotions" ("expires_at")  (0.1ms) CREATE INDEX "index_spree_promotions_on_id_and_type" ON "spree_promotions" ("id", "type")  (0.1ms) CREATE INDEX "index_spree_promotions_on_promotion_category_id" ON "spree_promotions" ("promotion_category_id")  (0.1ms) CREATE INDEX "index_spree_promotions_on_starts_at" ON "spree_promotions" ("starts_at")  (0.0ms) DROP TABLE IF EXISTS "spree_properties"  (0.1ms) CREATE TABLE "spree_properties" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "presentation" varchar NOT NULL, "created_at" datetime(6), "updated_at" datetime(6))  (0.0ms) DROP TABLE IF EXISTS "spree_property_prototypes"  (0.1ms) CREATE TABLE "spree_property_prototypes" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "prototype_id" integer, "property_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.0ms) DROP TABLE IF EXISTS "spree_prototype_taxons"  (0.1ms) CREATE TABLE "spree_prototype_taxons" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "taxon_id" integer, "prototype_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_prototype_taxons_on_prototype_id" ON "spree_prototype_taxons" ("prototype_id")  (0.1ms) CREATE INDEX "index_spree_prototype_taxons_on_taxon_id" ON "spree_prototype_taxons" ("taxon_id")  (0.0ms) DROP TABLE IF EXISTS "spree_prototypes"  (0.1ms) CREATE TABLE "spree_prototypes" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime(6), "updated_at" datetime(6))  (0.0ms) DROP TABLE IF EXISTS "spree_refund_reasons"  (0.1ms) CREATE TABLE "spree_refund_reasons" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "active" boolean DEFAULT 1, "mutable" boolean DEFAULT 1, "created_at" datetime(6), "updated_at" datetime(6), "code" varchar)  (0.0ms) DROP TABLE IF EXISTS "spree_refunds"  (0.1ms) CREATE TABLE "spree_refunds" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "payment_id" integer, "amount" decimal(10,2) DEFAULT '0.0' NOT NULL, "transaction_id" varchar, "created_at" datetime(6), "updated_at" datetime(6), "refund_reason_id" integer, "reimbursement_id" integer)  (0.1ms) CREATE INDEX "index_spree_refunds_on_payment_id" ON "spree_refunds" ("payment_id")  (0.1ms) CREATE INDEX "index_refunds_on_refund_reason_id" ON "spree_refunds" ("refund_reason_id")  (0.1ms) CREATE INDEX "index_spree_refunds_on_reimbursement_id" ON "spree_refunds" ("reimbursement_id")  (0.0ms) DROP TABLE IF EXISTS "spree_reimbursement_credits"  (0.1ms) CREATE TABLE "spree_reimbursement_credits" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal(10,2) DEFAULT '0.0' NOT NULL, "reimbursement_id" integer, "creditable_id" integer, "creditable_type" varchar, "created_at" datetime(6), "updated_at" datetime(6))  (0.0ms) DROP TABLE IF EXISTS "spree_reimbursement_types"  (0.1ms) CREATE TABLE "spree_reimbursement_types" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "active" boolean DEFAULT 1, "mutable" boolean DEFAULT 1, "created_at" datetime(6), "updated_at" datetime(6), "type" varchar)  (0.1ms) CREATE INDEX "index_spree_reimbursement_types_on_type" ON "spree_reimbursement_types" ("type")  (0.0ms) DROP TABLE IF EXISTS "spree_reimbursements"  (0.1ms) CREATE TABLE "spree_reimbursements" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar, "reimbursement_status" varchar, "customer_return_id" integer, "order_id" integer, "total" decimal(10,2), "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_reimbursements_on_customer_return_id" ON "spree_reimbursements" ("customer_return_id")  (0.1ms) CREATE INDEX "index_spree_reimbursements_on_order_id" ON "spree_reimbursements" ("order_id")  (0.0ms) DROP TABLE IF EXISTS "spree_return_authorizations"  (0.1ms) CREATE TABLE "spree_return_authorizations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "number" varchar, "state" varchar, "order_id" integer, "memo" text, "created_at" datetime(6), "updated_at" datetime(6), "stock_location_id" integer, "return_reason_id" integer)  (0.1ms) CREATE INDEX "index_return_authorizations_on_return_authorization_reason_id" ON "spree_return_authorizations" ("return_reason_id")  (0.0ms) DROP TABLE IF EXISTS "spree_return_items"  (0.1ms) CREATE TABLE "spree_return_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "return_authorization_id" integer, "inventory_unit_id" integer, "exchange_variant_id" integer, "created_at" datetime(6), "updated_at" datetime(6), "amount" decimal(12,4) DEFAULT '0.0' NOT NULL, "included_tax_total" decimal(12,4) DEFAULT '0.0' NOT NULL, "additional_tax_total" decimal(12,4) DEFAULT '0.0' NOT NULL, "reception_status" varchar, "acceptance_status" varchar, "customer_return_id" integer, "reimbursement_id" integer, "exchange_inventory_unit_id" integer, "acceptance_status_errors" text, "preferred_reimbursement_type_id" integer, "override_reimbursement_type_id" integer, "resellable" boolean DEFAULT 1 NOT NULL, "return_reason_id" integer)  (0.1ms) CREATE INDEX "index_return_items_on_customer_return_id" ON "spree_return_items" ("customer_return_id")  (0.1ms) CREATE INDEX "index_spree_return_items_on_exchange_inventory_unit_id" ON "spree_return_items" ("exchange_inventory_unit_id")  (0.0ms) DROP TABLE IF EXISTS "spree_return_reasons"  (0.1ms) CREATE TABLE "spree_return_reasons" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "active" boolean DEFAULT 1, "mutable" boolean DEFAULT 1, "created_at" datetime(6), "updated_at" datetime(6))  (0.0ms) DROP TABLE IF EXISTS "spree_roles"  (0.1ms) CREATE TABLE "spree_roles" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime(6), "updated_at" datetime(6))  (0.0ms) DROP TABLE IF EXISTS "spree_roles_users"  (0.1ms) CREATE TABLE "spree_roles_users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "role_id" integer, "user_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_roles_users_on_role_id" ON "spree_roles_users" ("role_id")  (0.1ms) CREATE INDEX "index_spree_roles_users_on_user_id" ON "spree_roles_users" ("user_id")  (0.0ms) DROP TABLE IF EXISTS "spree_shipments"  (0.1ms) CREATE TABLE "spree_shipments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "tracking" varchar, "number" varchar, "cost" decimal(10,2) DEFAULT '0.0', "shipped_at" datetime, "order_id" integer, "deprecated_address_id" integer, "state" varchar, "created_at" datetime(6), "updated_at" datetime(6), "stock_location_id" integer, "adjustment_total" decimal(10,2) DEFAULT '0.0', "additional_tax_total" decimal(10,2) DEFAULT '0.0', "promo_total" decimal(10,2) DEFAULT '0.0', "included_tax_total" decimal(10,2) DEFAULT '0.0' NOT NULL)  (0.1ms) CREATE INDEX "index_spree_shipments_on_deprecated_address_id" ON "spree_shipments" ("deprecated_address_id")  (0.1ms) CREATE INDEX "index_shipments_on_number" ON "spree_shipments" ("number")  (0.1ms) CREATE INDEX "index_spree_shipments_on_order_id" ON "spree_shipments" ("order_id")  (0.1ms) CREATE INDEX "index_spree_shipments_on_stock_location_id" ON "spree_shipments" ("stock_location_id")  (0.0ms) DROP TABLE IF EXISTS "spree_shipping_categories"  (0.1ms) CREATE TABLE "spree_shipping_categories" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime(6), "updated_at" datetime(6))  (0.0ms) DROP TABLE IF EXISTS "spree_shipping_method_categories"  (0.1ms) CREATE TABLE "spree_shipping_method_categories" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "shipping_method_id" integer NOT NULL, "shipping_category_id" integer NOT NULL, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE UNIQUE INDEX "unique_spree_shipping_method_categories" ON "spree_shipping_method_categories" ("shipping_category_id", "shipping_method_id")  (0.1ms) CREATE INDEX "index_spree_shipping_method_categories_on_shipping_method_id" ON "spree_shipping_method_categories" ("shipping_method_id")  (0.0ms) DROP TABLE IF EXISTS "spree_shipping_method_stock_locations"  (0.1ms) CREATE TABLE "spree_shipping_method_stock_locations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "shipping_method_id" integer, "stock_location_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "shipping_method_id_spree_sm_sl" ON "spree_shipping_method_stock_locations" ("shipping_method_id")  (0.1ms) CREATE INDEX "sstock_location_id_spree_sm_sl" ON "spree_shipping_method_stock_locations" ("stock_location_id")  (0.0ms) DROP TABLE IF EXISTS "spree_shipping_method_zones"  (0.1ms) CREATE TABLE "spree_shipping_method_zones" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "shipping_method_id" integer, "zone_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.0ms) DROP TABLE IF EXISTS "spree_shipping_methods"  (0.1ms) CREATE TABLE "spree_shipping_methods" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "display_on" varchar, "deleted_at" datetime, "created_at" datetime(6), "updated_at" datetime(6), "tracking_url" varchar, "admin_name" varchar, "tax_category_id" integer, "code" varchar, "available_to_all" boolean DEFAULT 1, "carrier" varchar, "service_level" varchar)  (0.1ms) CREATE INDEX "index_spree_shipping_methods_on_tax_category_id" ON "spree_shipping_methods" ("tax_category_id")  (0.0ms) DROP TABLE IF EXISTS "spree_shipping_rate_taxes"  (0.1ms) CREATE TABLE "spree_shipping_rate_taxes" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal(8,2) DEFAULT '0.0' NOT NULL, "tax_rate_id" integer, "shipping_rate_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)  (0.1ms) CREATE INDEX "index_spree_shipping_rate_taxes_on_shipping_rate_id" ON "spree_shipping_rate_taxes" ("shipping_rate_id")  (0.1ms) CREATE INDEX "index_spree_shipping_rate_taxes_on_tax_rate_id" ON "spree_shipping_rate_taxes" ("tax_rate_id")  (0.0ms) DROP TABLE IF EXISTS "spree_shipping_rates"  (0.1ms) CREATE TABLE "spree_shipping_rates" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "shipment_id" integer, "shipping_method_id" integer, "selected" boolean DEFAULT 0, "cost" decimal(8,2) DEFAULT '0.0', "created_at" datetime(6), "updated_at" datetime(6), "tax_rate_id" integer)  (0.1ms) CREATE UNIQUE INDEX "spree_shipping_rates_join_index" ON "spree_shipping_rates" ("shipment_id", "shipping_method_id")  (0.0ms) DROP TABLE IF EXISTS "spree_state_changes"  (0.1ms) CREATE TABLE "spree_state_changes" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "previous_state" varchar, "stateful_id" integer, "user_id" integer, "stateful_type" varchar, "next_state" varchar, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_state_changes_on_stateful_id_and_stateful_type" ON "spree_state_changes" ("stateful_id", "stateful_type")  (0.1ms) CREATE INDEX "index_spree_state_changes_on_user_id" ON "spree_state_changes" ("user_id")  (0.0ms) DROP TABLE IF EXISTS "spree_states"  (0.1ms) CREATE TABLE "spree_states" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "abbr" varchar, "country_id" integer, "updated_at" datetime(6), "created_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_states_on_country_id" ON "spree_states" ("country_id")  (0.0ms) DROP TABLE IF EXISTS "spree_stock_items"  (0.1ms) CREATE TABLE "spree_stock_items" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "stock_location_id" integer, "variant_id" integer, "count_on_hand" integer DEFAULT 0 NOT NULL, "created_at" datetime(6), "updated_at" datetime(6), "backorderable" boolean DEFAULT 0, "deleted_at" datetime)  (0.1ms) CREATE INDEX "index_spree_stock_items_on_deleted_at" ON "spree_stock_items" ("deleted_at")  (0.1ms) CREATE INDEX "stock_item_by_loc_and_var_id" ON "spree_stock_items" ("stock_location_id", "variant_id")  (0.1ms) CREATE INDEX "index_spree_stock_items_on_stock_location_id" ON "spree_stock_items" ("stock_location_id")  (0.1ms) CREATE UNIQUE INDEX "index_spree_stock_items_on_variant_id_and_stock_location_id" ON "spree_stock_items" ("variant_id", "stock_location_id") WHERE deleted_at is null  (0.0ms) DROP TABLE IF EXISTS "spree_stock_locations"  (0.1ms) CREATE TABLE "spree_stock_locations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime(6), "updated_at" datetime(6), "default" boolean DEFAULT 0 NOT NULL, "address1" varchar, "address2" varchar, "city" varchar, "state_id" integer, "state_name" varchar, "country_id" integer, "zipcode" varchar, "phone" varchar, "active" boolean DEFAULT 1, "backorderable_default" boolean DEFAULT 0, "propagate_all_variants" boolean DEFAULT 1, "admin_name" varchar, "position" integer DEFAULT 0, "restock_inventory" boolean DEFAULT 1 NOT NULL, "fulfillable" boolean DEFAULT 1 NOT NULL, "code" varchar, "check_stock_on_transfer" boolean DEFAULT 1)  (0.1ms) CREATE INDEX "index_spree_stock_locations_on_country_id" ON "spree_stock_locations" ("country_id")  (0.1ms) CREATE INDEX "index_spree_stock_locations_on_state_id" ON "spree_stock_locations" ("state_id")  (0.0ms) DROP TABLE IF EXISTS "spree_stock_movements"  (0.1ms) CREATE TABLE "spree_stock_movements" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "stock_item_id" integer, "quantity" integer DEFAULT 0, "action" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "originator_type" varchar, "originator_id" integer)  (0.1ms) CREATE INDEX "index_spree_stock_movements_on_stock_item_id" ON "spree_stock_movements" ("stock_item_id")  (0.0ms) DROP TABLE IF EXISTS "spree_store_credit_categories"  (0.1ms) CREATE TABLE "spree_store_credit_categories" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime(6), "updated_at" datetime(6))  (0.0ms) DROP TABLE IF EXISTS "spree_store_credit_events"  (0.1ms) CREATE TABLE "spree_store_credit_events" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "store_credit_id" integer NOT NULL, "action" varchar NOT NULL, "amount" decimal(8,2), "user_total_amount" decimal(8,2) DEFAULT '0.0' NOT NULL, "authorization_code" varchar NOT NULL, "deleted_at" datetime, "originator_type" varchar, "originator_id" integer, "created_at" datetime(6), "updated_at" datetime(6), "update_reason_id" integer)  (0.1ms) CREATE INDEX "index_spree_store_credit_events_on_deleted_at" ON "spree_store_credit_events" ("deleted_at")  (0.1ms) CREATE INDEX "index_spree_store_credit_events_on_store_credit_id" ON "spree_store_credit_events" ("store_credit_id")  (0.0ms) DROP TABLE IF EXISTS "spree_store_credit_types"  (0.1ms) CREATE TABLE "spree_store_credit_types" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "priority" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_store_credit_types_on_priority" ON "spree_store_credit_types" ("priority")  (0.0ms) DROP TABLE IF EXISTS "spree_store_credit_update_reasons"  (0.1ms) CREATE TABLE "spree_store_credit_update_reasons" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime(6), "updated_at" datetime(6))  (0.0ms) DROP TABLE IF EXISTS "spree_store_credits"  (0.1ms) CREATE TABLE "spree_store_credits" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "category_id" integer, "created_by_id" integer, "amount" decimal(8,2) DEFAULT '0.0' NOT NULL, "amount_used" decimal(8,2) DEFAULT '0.0' NOT NULL, "amount_authorized" decimal(8,2) DEFAULT '0.0' NOT NULL, "currency" varchar, "memo" text, "spree_store_credits" datetime, "deleted_at" datetime, "created_at" datetime(6), "updated_at" datetime(6), "type_id" integer, "invalidated_at" datetime)  (0.1ms) CREATE INDEX "index_spree_store_credits_on_deleted_at" ON "spree_store_credits" ("deleted_at")  (0.1ms) CREATE INDEX "index_spree_store_credits_on_type_id" ON "spree_store_credits" ("type_id")  (0.1ms) CREATE INDEX "index_spree_store_credits_on_user_id" ON "spree_store_credits" ("user_id")  (0.0ms) DROP TABLE IF EXISTS "spree_store_payment_methods"  (0.1ms) CREATE TABLE "spree_store_payment_methods" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "store_id" integer NOT NULL, "payment_method_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)  (0.1ms) CREATE INDEX "index_spree_store_payment_methods_on_payment_method_id" ON "spree_store_payment_methods" ("payment_method_id")  (0.1ms) CREATE INDEX "index_spree_store_payment_methods_on_store_id" ON "spree_store_payment_methods" ("store_id")  (0.0ms) DROP TABLE IF EXISTS "spree_stores"  (0.1ms) CREATE TABLE "spree_stores" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "url" varchar, "meta_description" text, "meta_keywords" text, "seo_title" varchar, "mail_from_address" varchar, "default_currency" varchar, "code" varchar, "default" boolean DEFAULT 0 NOT NULL, "created_at" datetime(6), "updated_at" datetime(6), "cart_tax_country_iso" varchar)  (0.1ms) CREATE INDEX "index_spree_stores_on_code" ON "spree_stores" ("code")  (0.1ms) CREATE INDEX "index_spree_stores_on_default" ON "spree_stores" ("default")  (0.0ms) DROP TABLE IF EXISTS "spree_tax_categories"  (0.1ms) CREATE TABLE "spree_tax_categories" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "is_default" boolean DEFAULT 0, "deleted_at" datetime, "created_at" datetime(6), "updated_at" datetime(6), "tax_code" varchar)  (0.0ms) DROP TABLE IF EXISTS "spree_tax_rates"  (0.1ms) CREATE TABLE "spree_tax_rates" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" decimal(8,5), "zone_id" integer, "tax_category_id" integer, "included_in_price" boolean DEFAULT 0, "created_at" datetime(6), "updated_at" datetime(6), "name" varchar, "show_rate_in_label" boolean DEFAULT 1, "deleted_at" datetime)  (0.1ms) CREATE INDEX "index_spree_tax_rates_on_deleted_at" ON "spree_tax_rates" ("deleted_at")  (0.1ms) CREATE INDEX "index_spree_tax_rates_on_tax_category_id" ON "spree_tax_rates" ("tax_category_id")  (0.1ms) CREATE INDEX "index_spree_tax_rates_on_zone_id" ON "spree_tax_rates" ("zone_id")  (0.0ms) DROP TABLE IF EXISTS "spree_taxonomies"  (0.1ms) CREATE TABLE "spree_taxonomies" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6), "updated_at" datetime(6), "position" integer DEFAULT 0)  (0.1ms) CREATE INDEX "index_spree_taxonomies_on_position" ON "spree_taxonomies" ("position")  (0.0ms) DROP TABLE IF EXISTS "spree_taxons"  (0.1ms) CREATE TABLE "spree_taxons" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "position" integer DEFAULT 0, "name" varchar NOT NULL, "permalink" varchar, "taxonomy_id" integer, "lft" integer, "rgt" integer, "icon_file_name" varchar, "icon_content_type" varchar, "icon_file_size" integer, "icon_updated_at" datetime, "description" text, "created_at" datetime(6), "updated_at" datetime(6), "meta_title" varchar, "meta_description" varchar, "meta_keywords" varchar, "depth" integer)  (0.1ms) CREATE INDEX "index_taxons_on_parent_id" ON "spree_taxons" ("parent_id")  (0.1ms) CREATE INDEX "index_taxons_on_permalink" ON "spree_taxons" ("permalink")  (0.1ms) CREATE INDEX "index_spree_taxons_on_position" ON "spree_taxons" ("position")  (0.1ms) CREATE INDEX "index_taxons_on_taxonomy_id" ON "spree_taxons" ("taxonomy_id")  (0.0ms) DROP TABLE IF EXISTS "spree_unit_cancels"  (0.1ms) CREATE TABLE "spree_unit_cancels" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "inventory_unit_id" integer NOT NULL, "reason" varchar, "created_by" varchar, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_unit_cancels_on_inventory_unit_id" ON "spree_unit_cancels" ("inventory_unit_id")  (0.0ms) DROP TABLE IF EXISTS "spree_user_addresses"  (0.1ms) CREATE TABLE "spree_user_addresses" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "address_id" integer NOT NULL, "default" boolean DEFAULT 0, "archived" boolean DEFAULT 0, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)  (0.1ms) CREATE INDEX "index_spree_user_addresses_on_address_id" ON "spree_user_addresses" ("address_id")  (0.1ms) CREATE UNIQUE INDEX "index_spree_user_addresses_on_user_id_and_address_id" ON "spree_user_addresses" ("user_id", "address_id")  (0.1ms) CREATE INDEX "index_spree_user_addresses_on_user_id" ON "spree_user_addresses" ("user_id")  (0.0ms) DROP TABLE IF EXISTS "spree_user_stock_locations"  (0.1ms) CREATE TABLE "spree_user_stock_locations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "stock_location_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_user_stock_locations_on_user_id" ON "spree_user_stock_locations" ("user_id")  (0.0ms) DROP TABLE IF EXISTS "spree_variant_property_rule_conditions"  (0.1ms) CREATE TABLE "spree_variant_property_rule_conditions" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "option_value_id" integer, "variant_property_rule_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)  (0.1ms) CREATE INDEX "index_spree_variant_prop_rule_conditions_on_rule_and_optval" ON "spree_variant_property_rule_conditions" ("variant_property_rule_id", "option_value_id")  (0.0ms) DROP TABLE IF EXISTS "spree_variant_property_rule_values"  (0.1ms) CREATE TABLE "spree_variant_property_rule_values" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "value" text, "position" integer DEFAULT 0, "property_id" integer, "variant_property_rule_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_variant_property_rule_values_on_property_id" ON "spree_variant_property_rule_values" ("property_id")  (0.1ms) CREATE INDEX "index_spree_variant_property_rule_values_on_rule" ON "spree_variant_property_rule_values" ("variant_property_rule_id")  (0.0ms) DROP TABLE IF EXISTS "spree_variant_property_rules"  (0.1ms) CREATE TABLE "spree_variant_property_rules" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)  (0.1ms) CREATE INDEX "index_spree_variant_property_rules_on_product_id" ON "spree_variant_property_rules" ("product_id")  (0.0ms) DROP TABLE IF EXISTS "spree_variants"  (0.1ms) CREATE TABLE "spree_variants" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "sku" varchar DEFAULT '' NOT NULL, "weight" decimal(8,2) DEFAULT '0.0', "height" decimal(8,2), "width" decimal(8,2), "depth" decimal(8,2), "deleted_at" datetime, "is_master" boolean DEFAULT 0, "product_id" integer, "cost_price" decimal(10,2), "position" integer, "cost_currency" varchar, "track_inventory" boolean DEFAULT 1, "tax_category_id" integer, "updated_at" datetime(6), "created_at" datetime(6))  (0.1ms) CREATE INDEX "index_spree_variants_on_position" ON "spree_variants" ("position")  (0.1ms) CREATE INDEX "index_spree_variants_on_product_id" ON "spree_variants" ("product_id")  (0.1ms) CREATE INDEX "index_spree_variants_on_sku" ON "spree_variants" ("sku")  (0.1ms) CREATE INDEX "index_spree_variants_on_tax_category_id" ON "spree_variants" ("tax_category_id")  (0.1ms) CREATE INDEX "index_spree_variants_on_track_inventory" ON "spree_variants" ("track_inventory")  (0.1ms) DROP TABLE IF EXISTS "spree_zone_members"  (0.2ms) CREATE TABLE "spree_zone_members" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "zoneable_type" varchar, "zoneable_id" integer, "zone_id" integer, "created_at" datetime(6), "updated_at" datetime(6))  (0.2ms) CREATE INDEX "index_spree_zone_members_on_zone_id" ON "spree_zone_members" ("zone_id")  (0.1ms) CREATE INDEX "index_spree_zone_members_on_zoneable_id_and_zoneable_type" ON "spree_zone_members" ("zoneable_id", "zoneable_type")  (0.0ms) DROP TABLE IF EXISTS "spree_zones"  (0.2ms) CREATE TABLE "spree_zones" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "default_tax" boolean DEFAULT 0, "zone_members_count" integer DEFAULT 0, "created_at" datetime(6), "updated_at" datetime(6)) ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234718"]]  (5.3ms) commit transaction Migrating to CreateSpreeWalletPaymentSources (20181007234719)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "spree_wallet_payment_sources" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "payment_source_type" varchar NOT NULL, "payment_source_id" integer NOT NULL, "default" boolean DEFAULT 0 NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_5dd6e027c5" FOREIGN KEY ("user_id") REFERENCES "spree_users" ("id") )  (0.1ms) CREATE INDEX "index_spree_wallet_payment_sources_on_user_id" ON "spree_wallet_payment_sources" ("user_id")  (0.1ms) CREATE UNIQUE INDEX "index_spree_wallet_payment_sources_on_source_and_user" ON "spree_wallet_payment_sources" ("user_id", "payment_source_id", "payment_source_type") ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234719"]]  (0.7ms) commit transaction Migrating to MigrateCreditCardsToWalletPaymentSources (20181007234720)  (0.0ms) begin transaction MigrateCreditCardsToWalletPaymentSources::CreditCard Load (0.2ms) SELECT "spree_credit_cards".* FROM "spree_credit_cards" WHERE "spree_credit_cards"."gateway_customer_profile_id" IS NOT NULL AND "spree_credit_cards"."user_id" IS NOT NULL ORDER BY "spree_credit_cards"."id" ASC LIMIT ? [["LIMIT", 1000]] ActiveRecord::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234720"]]  (0.6ms) commit transaction Migrating to RemoveIsDefaultFromPrices (20181007234721)  (0.1ms) begin transaction  (0.1ms) CREATE TEMPORARY TABLE "aspree_prices" ("id" integer NOT NULL PRIMARY KEY, "variant_id" integer NOT NULL, "amount" decimal(10,2) DEFAULT NULL, "currency" varchar DEFAULT NULL, "deleted_at" datetime DEFAULT NULL, "is_default" boolean DEFAULT '1' NOT NULL, "created_at" datetime(6) DEFAULT NULL, "updated_at" datetime(6) DEFAULT NULL, "country_iso" varchar(2) DEFAULT NULL)  (0.1ms) CREATE INDEX "tindex_aspree_prices_on_variant_id_and_currency" ON "aspree_prices" ("variant_id", "currency")  (0.1ms) CREATE INDEX "tindex_aspree_prices_on_country_iso" ON "aspree_prices" ("country_iso")  (0.0ms) INSERT INTO "aspree_prices" ("id","variant_id","amount","currency","deleted_at","is_default","created_at","updated_at","country_iso") SELECT "id","variant_id","amount","currency","deleted_at","is_default","created_at","updated_at","country_iso" FROM "spree_prices"  (0.2ms) DROP TABLE "spree_prices"  (0.2ms) CREATE TABLE "spree_prices" ("id" integer NOT NULL PRIMARY KEY, "variant_id" integer NOT NULL, "amount" decimal(10,2) DEFAULT NULL, "currency" varchar DEFAULT NULL, "deleted_at" datetime DEFAULT NULL, "created_at" datetime(6) DEFAULT NULL, "updated_at" datetime(6) DEFAULT NULL, "country_iso" varchar(2) DEFAULT NULL)  (0.1ms) CREATE INDEX "index_spree_prices_on_country_iso" ON "spree_prices" ("country_iso")  (0.1ms) CREATE INDEX "index_spree_prices_on_variant_id_and_currency" ON "spree_prices" ("variant_id", "currency")  (0.0ms) INSERT INTO "spree_prices" ("id","variant_id","amount","currency","deleted_at","created_at","updated_at","country_iso") SELECT "id","variant_id","amount","currency","deleted_at","created_at","updated_at","country_iso" FROM "aspree_prices"  (0.1ms) DROP TABLE "aspree_prices" ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234721"]]  (0.8ms) commit transaction Migrating to RemoveCurrencyFromLineItems (20181007234722)  (0.0ms) begin transaction  (0.2ms) CREATE TEMPORARY TABLE "aspree_line_items" ("id" integer NOT NULL PRIMARY KEY, "variant_id" integer DEFAULT NULL, "order_id" integer DEFAULT NULL, "quantity" integer NOT NULL, "price" decimal(10,2) NOT NULL, "created_at" datetime(6) DEFAULT NULL, "updated_at" datetime(6) DEFAULT NULL, "currency" varchar DEFAULT NULL, "cost_price" decimal(10,2) DEFAULT NULL, "tax_category_id" integer DEFAULT NULL, "adjustment_total" decimal(10,2) DEFAULT '0.0', "additional_tax_total" decimal(10,2) DEFAULT '0.0', "promo_total" decimal(10,2) DEFAULT '0.0', "included_tax_total" decimal(10,2) DEFAULT '0.0' NOT NULL)  (0.2ms) CREATE INDEX "tindex_aspree_line_items_on_variant_id" ON "aspree_line_items" ("variant_id")  (0.1ms) CREATE INDEX "tindex_aspree_line_items_on_order_id" ON "aspree_line_items" ("order_id")  (0.1ms) INSERT INTO "aspree_line_items" ("id","variant_id","order_id","quantity","price","created_at","updated_at","currency","cost_price","tax_category_id","adjustment_total","additional_tax_total","promo_total","included_tax_total") SELECT "id","variant_id","order_id","quantity","price","created_at","updated_at","currency","cost_price","tax_category_id","adjustment_total","additional_tax_total","promo_total","included_tax_total" FROM "spree_line_items"  (0.2ms) DROP TABLE "spree_line_items"  (0.1ms) CREATE TABLE "spree_line_items" ("id" integer NOT NULL PRIMARY KEY, "variant_id" integer DEFAULT NULL, "order_id" integer DEFAULT NULL, "quantity" integer NOT NULL, "price" decimal(10,2) NOT NULL, "created_at" datetime(6) DEFAULT NULL, "updated_at" datetime(6) DEFAULT NULL, "cost_price" decimal(10,2) DEFAULT NULL, "tax_category_id" integer DEFAULT NULL, "adjustment_total" decimal(10,2) DEFAULT '0.0', "additional_tax_total" decimal(10,2) DEFAULT '0.0', "promo_total" decimal(10,2) DEFAULT '0.0', "included_tax_total" decimal(10,2) DEFAULT '0.0' NOT NULL)  (0.1ms) CREATE INDEX "index_spree_line_items_on_order_id" ON "spree_line_items" ("order_id")  (0.2ms) CREATE INDEX "index_spree_line_items_on_variant_id" ON "spree_line_items" ("variant_id")  (0.1ms) INSERT INTO "spree_line_items" ("id","variant_id","order_id","quantity","price","created_at","updated_at","cost_price","tax_category_id","adjustment_total","additional_tax_total","promo_total","included_tax_total") SELECT "id","variant_id","order_id","quantity","price","created_at","updated_at","cost_price","tax_category_id","adjustment_total","additional_tax_total","promo_total","included_tax_total" FROM "aspree_line_items"  (0.1ms) DROP TABLE "aspree_line_items" ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234722"]]  (0.8ms) commit transaction Migrating to AddAvailableToColumnsAndRemoveDisplayOnFromPaymentMethods (20181007234723)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "spree_payment_methods" ADD "available_to_users" boolean DEFAULT 1  (0.2ms) ALTER TABLE "spree_payment_methods" ADD "available_to_admin" boolean DEFAULT 1  (0.1ms) UPDATE spree_payment_methods SET available_to_users=0 WHERE NOT (display_on='front_end' OR display_on='' OR display_on IS NULL)  (0.1ms) UPDATE spree_payment_methods SET available_to_admin=0 WHERE NOT (display_on='back_end' OR display_on='' OR display_on IS NULL)  (0.2ms) CREATE TEMPORARY TABLE "aspree_payment_methods" ("id" integer NOT NULL PRIMARY KEY, "type" varchar DEFAULT NULL, "name" varchar DEFAULT NULL, "description" text DEFAULT NULL, "active" boolean DEFAULT '1', "deleted_at" datetime DEFAULT NULL, "created_at" datetime(6) DEFAULT NULL, "updated_at" datetime(6) DEFAULT NULL, "display_on" varchar DEFAULT NULL, "auto_capture" boolean DEFAULT NULL, "preferences" text DEFAULT NULL, "preference_source" varchar DEFAULT NULL, "position" integer DEFAULT 0, "available_to_users" boolean DEFAULT '1', "available_to_admin" boolean DEFAULT '1')  (0.1ms) CREATE INDEX "tindex_aspree_payment_methods_on_id_and_type" ON "aspree_payment_methods" ("id", "type")  (0.1ms) INSERT INTO "aspree_payment_methods" ("id","type","name","description","active","deleted_at","created_at","updated_at","display_on","auto_capture","preferences","preference_source","position","available_to_users","available_to_admin") SELECT "id","type","name","description","active","deleted_at","created_at","updated_at","display_on","auto_capture","preferences","preference_source","position","available_to_users","available_to_admin" FROM "spree_payment_methods"  (0.1ms) DROP TABLE "spree_payment_methods"  (0.2ms) CREATE TABLE "spree_payment_methods" ("id" integer NOT NULL PRIMARY KEY, "type" varchar DEFAULT NULL, "name" varchar DEFAULT NULL, "description" text DEFAULT NULL, "active" boolean DEFAULT '1', "deleted_at" datetime DEFAULT NULL, "created_at" datetime(6) DEFAULT NULL, "updated_at" datetime(6) DEFAULT NULL, "auto_capture" boolean DEFAULT NULL, "preferences" text DEFAULT NULL, "preference_source" varchar DEFAULT NULL, "position" integer DEFAULT 0, "available_to_users" boolean DEFAULT '1', "available_to_admin" boolean DEFAULT '1')  (0.1ms) CREATE INDEX "index_spree_payment_methods_on_id_and_type" ON "spree_payment_methods" ("id", "type")  (0.1ms) INSERT INTO "spree_payment_methods" ("id","type","name","description","active","deleted_at","created_at","updated_at","auto_capture","preferences","preference_source","position","available_to_users","available_to_admin") SELECT "id","type","name","description","active","deleted_at","created_at","updated_at","auto_capture","preferences","preference_source","position","available_to_users","available_to_admin" FROM "aspree_payment_methods"  (0.1ms) DROP TABLE "aspree_payment_methods" ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234723"]]  (0.7ms) commit transaction Migrating to CreateSpreePromotionCodeBatch (20181007234724)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "spree_promotion_code_batches" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "promotion_id" integer NOT NULL, "base_code" varchar NOT NULL, "number_of_codes" integer NOT NULL, "email" varchar, "error" varchar, "state" varchar DEFAULT 'pending', "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)  (0.1ms) CREATE INDEX "index_spree_promotion_code_batches_on_promotion_id" ON "spree_promotion_code_batches" ("promotion_id")  (0.2ms) ALTER TABLE "spree_promotion_codes" ADD "promotion_code_batch_id" integer  (0.1ms) CREATE INDEX "index_spree_promotion_codes_on_promotion_code_batch_id" ON "spree_promotion_codes" ("promotion_code_batch_id") ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234724"]]  (0.7ms) commit transaction Migrating to AddAvailableToUsersAndRemoveDisplayOnFromShippingMethods (20181007234725)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "spree_shipping_methods" ADD "available_to_users" boolean DEFAULT 1  (0.0ms) UPDATE spree_shipping_methods SET available_to_users=0 WHERE display_on='back_end'  (0.1ms) CREATE TEMPORARY TABLE "aspree_shipping_methods" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "display_on" varchar DEFAULT NULL, "deleted_at" datetime DEFAULT NULL, "created_at" datetime(6) DEFAULT NULL, "updated_at" datetime(6) DEFAULT NULL, "tracking_url" varchar DEFAULT NULL, "admin_name" varchar DEFAULT NULL, "tax_category_id" integer DEFAULT NULL, "code" varchar DEFAULT NULL, "available_to_all" boolean DEFAULT '1', "carrier" varchar DEFAULT NULL, "service_level" varchar DEFAULT NULL, "available_to_users" boolean DEFAULT '1')  (0.1ms) CREATE INDEX "tindex_aspree_shipping_methods_on_tax_category_id" ON "aspree_shipping_methods" ("tax_category_id")  (0.1ms) INSERT INTO "aspree_shipping_methods" ("id","name","display_on","deleted_at","created_at","updated_at","tracking_url","admin_name","tax_category_id","code","available_to_all","carrier","service_level","available_to_users") SELECT "id","name","display_on","deleted_at","created_at","updated_at","tracking_url","admin_name","tax_category_id","code","available_to_all","carrier","service_level","available_to_users" FROM "spree_shipping_methods"  (0.1ms) DROP TABLE "spree_shipping_methods"  (0.1ms) CREATE TABLE "spree_shipping_methods" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "deleted_at" datetime DEFAULT NULL, "created_at" datetime(6) DEFAULT NULL, "updated_at" datetime(6) DEFAULT NULL, "tracking_url" varchar DEFAULT NULL, "admin_name" varchar DEFAULT NULL, "tax_category_id" integer DEFAULT NULL, "code" varchar DEFAULT NULL, "available_to_all" boolean DEFAULT '1', "carrier" varchar DEFAULT NULL, "service_level" varchar DEFAULT NULL, "available_to_users" boolean DEFAULT '1')  (0.1ms) CREATE INDEX "index_spree_shipping_methods_on_tax_category_id" ON "spree_shipping_methods" ("tax_category_id")  (0.1ms) INSERT INTO "spree_shipping_methods" ("id","name","deleted_at","created_at","updated_at","tracking_url","admin_name","tax_category_id","code","available_to_all","carrier","service_level","available_to_users") SELECT "id","name","deleted_at","created_at","updated_at","tracking_url","admin_name","tax_category_id","code","available_to_all","carrier","service_level","available_to_users" FROM "aspree_shipping_methods"  (0.1ms) DROP TABLE "aspree_shipping_methods" ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234725"]]  (0.7ms) commit transaction Migrating to AddIndexToSpreePaymentsNumber (20181007234726)  (0.0ms) begin transaction  (0.2ms) CREATE UNIQUE INDEX "index_spree_payments_on_number" ON "spree_payments" ("number") ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234726"]]  (0.6ms) commit transaction Migrating to RemoveSpreeStoreCreditsColumn (20181007234727)  (0.0ms) begin transaction  (0.1ms) CREATE TEMPORARY TABLE "aspree_store_credits" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer DEFAULT NULL, "category_id" integer DEFAULT NULL, "created_by_id" integer DEFAULT NULL, "amount" decimal(8,2) DEFAULT '0.0' NOT NULL, "amount_used" decimal(8,2) DEFAULT '0.0' NOT NULL, "amount_authorized" decimal(8,2) DEFAULT '0.0' NOT NULL, "currency" varchar DEFAULT NULL, "memo" text DEFAULT NULL, "spree_store_credits" datetime DEFAULT NULL, "deleted_at" datetime DEFAULT NULL, "created_at" datetime(6) DEFAULT NULL, "updated_at" datetime(6) DEFAULT NULL, "type_id" integer DEFAULT NULL, "invalidated_at" datetime DEFAULT NULL)  (0.1ms) CREATE INDEX "tindex_aspree_store_credits_on_user_id" ON "aspree_store_credits" ("user_id")  (0.1ms) CREATE INDEX "tindex_aspree_store_credits_on_type_id" ON "aspree_store_credits" ("type_id")  (0.1ms) CREATE INDEX "tindex_aspree_store_credits_on_deleted_at" ON "aspree_store_credits" ("deleted_at")  (0.1ms) INSERT INTO "aspree_store_credits" ("id","user_id","category_id","created_by_id","amount","amount_used","amount_authorized","currency","memo","spree_store_credits","deleted_at","created_at","updated_at","type_id","invalidated_at") SELECT "id","user_id","category_id","created_by_id","amount","amount_used","amount_authorized","currency","memo","spree_store_credits","deleted_at","created_at","updated_at","type_id","invalidated_at" FROM "spree_store_credits"  (0.2ms) DROP TABLE "spree_store_credits"  (0.2ms) CREATE TABLE "spree_store_credits" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer DEFAULT NULL, "category_id" integer DEFAULT NULL, "created_by_id" integer DEFAULT NULL, "amount" decimal(8,2) DEFAULT '0.0' NOT NULL, "amount_used" decimal(8,2) DEFAULT '0.0' NOT NULL, "amount_authorized" decimal(8,2) DEFAULT '0.0' NOT NULL, "currency" varchar DEFAULT NULL, "memo" text DEFAULT NULL, "deleted_at" datetime DEFAULT NULL, "created_at" datetime(6) DEFAULT NULL, "updated_at" datetime(6) DEFAULT NULL, "type_id" integer DEFAULT NULL, "invalidated_at" datetime DEFAULT NULL)  (0.1ms) CREATE INDEX "index_spree_store_credits_on_deleted_at" ON "spree_store_credits" ("deleted_at")  (0.1ms) CREATE INDEX "index_spree_store_credits_on_type_id" ON "spree_store_credits" ("type_id")  (0.1ms) CREATE INDEX "index_spree_store_credits_on_user_id" ON "spree_store_credits" ("user_id")  (0.1ms) INSERT INTO "spree_store_credits" ("id","user_id","category_id","created_by_id","amount","amount_used","amount_authorized","currency","memo","deleted_at","created_at","updated_at","type_id","invalidated_at") SELECT "id","user_id","category_id","created_by_id","amount","amount_used","amount_authorized","currency","memo","deleted_at","created_at","updated_at","type_id","invalidated_at" FROM "aspree_store_credits"  (0.1ms) DROP TABLE "aspree_store_credits" ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234727"]]  (0.7ms) commit transaction Migrating to AddLftAndRgtIndexesToTaxons (20181007234728)  (0.0ms) begin transaction  (0.2ms) CREATE INDEX "index_spree_taxons_on_lft" ON "spree_taxons" ("lft")  (0.1ms) CREATE INDEX "index_spree_taxons_on_rgt" ON "spree_taxons" ("rgt") ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234728"]]  (0.6ms) commit transaction Migrating to RemoveOrderIdFromInventoryUnits (20181007234729)  (0.1ms) begin transaction RemoveOrderIdFromInventoryUnits::InventoryUnit Exists (0.1ms) SELECT 1 AS one FROM "spree_inventory_units" INNER JOIN "spree_shipments" ON "spree_shipments"."id" = "spree_inventory_units"."shipment_id" WHERE NOT (spree_inventory_units.order_id = spree_shipments.order_id) LIMIT ? [["LIMIT", 1]]  (0.1ms) CREATE TEMPORARY TABLE "aspree_inventory_units" ("id" integer NOT NULL PRIMARY KEY, "state" varchar DEFAULT NULL, "variant_id" integer DEFAULT NULL, "order_id" integer DEFAULT NULL, "shipment_id" integer DEFAULT NULL, "created_at" datetime(6) DEFAULT NULL, "updated_at" datetime(6) DEFAULT NULL, "pending" boolean DEFAULT '1', "line_item_id" integer DEFAULT NULL, "carton_id" integer DEFAULT NULL)  (0.1ms) CREATE INDEX "tindex_inventory_units_on_variant_id" ON "aspree_inventory_units" ("variant_id")  (0.1ms) CREATE INDEX "tindex_inventory_units_on_shipment_id" ON "aspree_inventory_units" ("shipment_id")  (0.1ms) CREATE INDEX "tindex_inventory_units_on_order_id" ON "aspree_inventory_units" ("order_id")  (0.1ms) CREATE INDEX "tindex_aspree_inventory_units_on_line_item_id" ON "aspree_inventory_units" ("line_item_id")  (0.1ms) CREATE INDEX "tindex_aspree_inventory_units_on_carton_id" ON "aspree_inventory_units" ("carton_id")  (0.1ms) INSERT INTO "aspree_inventory_units" ("id","state","variant_id","order_id","shipment_id","created_at","updated_at","pending","line_item_id","carton_id") SELECT "id","state","variant_id","order_id","shipment_id","created_at","updated_at","pending","line_item_id","carton_id" FROM "spree_inventory_units"  (0.3ms) DROP TABLE "spree_inventory_units"  (0.2ms) CREATE TABLE "spree_inventory_units" ("id" integer NOT NULL PRIMARY KEY, "state" varchar DEFAULT NULL, "variant_id" integer DEFAULT NULL, "shipment_id" integer DEFAULT NULL, "created_at" datetime(6) DEFAULT NULL, "updated_at" datetime(6) DEFAULT NULL, "pending" boolean DEFAULT '1', "line_item_id" integer DEFAULT NULL, "carton_id" integer DEFAULT NULL)  (0.1ms) CREATE INDEX "index_spree_inventory_units_on_carton_id" ON "spree_inventory_units" ("carton_id")  (0.1ms) CREATE INDEX "index_spree_inventory_units_on_line_item_id" ON "spree_inventory_units" ("line_item_id")  (0.1ms) CREATE INDEX "index_inventory_units_on_shipment_id" ON "spree_inventory_units" ("shipment_id")  (0.1ms) CREATE INDEX "index_inventory_units_on_variant_id" ON "spree_inventory_units" ("variant_id")  (0.0ms) INSERT INTO "spree_inventory_units" ("id","state","variant_id","shipment_id","created_at","updated_at","pending","line_item_id","carton_id") SELECT "id","state","variant_id","shipment_id","created_at","updated_at","pending","line_item_id","carton_id" FROM "aspree_inventory_units"  (0.1ms) DROP TABLE "aspree_inventory_units" ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234729"]]  (0.7ms) commit transaction Migrating to TransformTaxRateCategoryRelation (20181007234730)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "spree_tax_rate_tax_categories" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "tax_category_id" integer NOT NULL, "tax_rate_id" integer NOT NULL)  (0.1ms) CREATE INDEX "index_spree_tax_rate_tax_categories_on_tax_category_id" ON "spree_tax_rate_tax_categories" ("tax_category_id")  (0.1ms) CREATE INDEX "index_spree_tax_rate_tax_categories_on_tax_rate_id" ON "spree_tax_rate_tax_categories" ("tax_rate_id") TransformTaxRateCategoryRelation::TaxRate Load (0.1ms) SELECT "spree_tax_rates".* FROM "spree_tax_rates" WHERE "spree_tax_rates"."tax_category_id" IS NOT NULL ORDER BY "spree_tax_rates"."id" ASC LIMIT ? [["LIMIT", 1000]]  (0.2ms) CREATE TEMPORARY TABLE "aspree_tax_rates" ("id" integer NOT NULL PRIMARY KEY, "amount" decimal(8,5) DEFAULT NULL, "zone_id" integer DEFAULT NULL, "tax_category_id" integer DEFAULT NULL, "included_in_price" boolean DEFAULT '0', "created_at" datetime(6) DEFAULT NULL, "updated_at" datetime(6) DEFAULT NULL, "name" varchar DEFAULT NULL, "show_rate_in_label" boolean DEFAULT '1', "deleted_at" datetime DEFAULT NULL)  (0.1ms) CREATE INDEX "tindex_aspree_tax_rates_on_zone_id" ON "aspree_tax_rates" ("zone_id")  (0.1ms) CREATE INDEX "tindex_aspree_tax_rates_on_tax_category_id" ON "aspree_tax_rates" ("tax_category_id")  (0.1ms) CREATE INDEX "tindex_aspree_tax_rates_on_deleted_at" ON "aspree_tax_rates" ("deleted_at")  (0.1ms) INSERT INTO "aspree_tax_rates" ("id","amount","zone_id","tax_category_id","included_in_price","created_at","updated_at","name","show_rate_in_label","deleted_at") SELECT "id","amount","zone_id","tax_category_id","included_in_price","created_at","updated_at","name","show_rate_in_label","deleted_at" FROM "spree_tax_rates"  (0.1ms) DROP TABLE "spree_tax_rates"  (0.1ms) CREATE TABLE "spree_tax_rates" ("id" integer NOT NULL PRIMARY KEY, "amount" decimal(8,5) DEFAULT NULL, "zone_id" integer DEFAULT NULL, "included_in_price" boolean DEFAULT '0', "created_at" datetime(6) DEFAULT NULL, "updated_at" datetime(6) DEFAULT NULL, "name" varchar DEFAULT NULL, "show_rate_in_label" boolean DEFAULT '1', "deleted_at" datetime DEFAULT NULL)  (0.1ms) CREATE INDEX "index_spree_tax_rates_on_deleted_at" ON "spree_tax_rates" ("deleted_at")  (0.1ms) CREATE INDEX "index_spree_tax_rates_on_zone_id" ON "spree_tax_rates" ("zone_id")  (0.0ms) INSERT INTO "spree_tax_rates" ("id","amount","zone_id","included_in_price","created_at","updated_at","name","show_rate_in_label","deleted_at") SELECT "id","amount","zone_id","included_in_price","created_at","updated_at","name","show_rate_in_label","deleted_at" FROM "aspree_tax_rates"  (0.1ms) DROP TABLE "aspree_tax_rates" ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234730"]]  (0.9ms) commit transaction Migrating to AddRolesUniqueConstraints (20181007234731)  (0.0ms) begin transaction  (0.2ms) CREATE UNIQUE INDEX "index_spree_roles_on_name" ON "spree_roles" ("name")  (0.1ms) CREATE UNIQUE INDEX "index_spree_roles_users_on_user_id_and_role_id" ON "spree_roles_users" ("user_id", "role_id") ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234731"]]  (0.7ms) commit transaction Migrating to AddTimeRangeToTaxRate (20181007234732)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "spree_tax_rates" ADD "starts_at" datetime  (0.2ms) ALTER TABLE "spree_tax_rates" ADD "expires_at" datetime ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234732"]]  (0.6ms) commit transaction Migrating to RenameBogusGateways (20181007234733)  (0.0ms) begin transaction  (0.1ms) UPDATE spree_payment_methods SET type = 'Spree::PaymentMethod::CreditCard' WHERE type = 'Spree::Gateway';   (0.0ms) UPDATE spree_payment_methods SET type = 'Spree::PaymentMethod::BogusCreditCard' WHERE type = 'Spree::Gateway::Bogus';   (0.0ms) UPDATE spree_payment_methods SET type = 'Spree::PaymentMethod::SimpleBogusCreditCard' WHERE type = 'Spree::Gateway::BogusSimple';  ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234733"]]  (0.7ms) commit transaction Migrating to RemoveDefaultTaxFromSpreeZones (20181007234734)  (0.0ms) begin transaction  (0.1ms) CREATE TEMPORARY TABLE "aspree_zones" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "description" varchar DEFAULT NULL, "default_tax" boolean DEFAULT '0', "zone_members_count" integer DEFAULT 0, "created_at" datetime(6) DEFAULT NULL, "updated_at" datetime(6) DEFAULT NULL)  (0.0ms) INSERT INTO "aspree_zones" ("id","name","description","default_tax","zone_members_count","created_at","updated_at") SELECT "id","name","description","default_tax","zone_members_count","created_at","updated_at" FROM "spree_zones"  (0.2ms) DROP TABLE "spree_zones"  (0.1ms) CREATE TABLE "spree_zones" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "description" varchar DEFAULT NULL, "zone_members_count" integer DEFAULT 0, "created_at" datetime(6) DEFAULT NULL, "updated_at" datetime(6) DEFAULT NULL)  (0.0ms) INSERT INTO "spree_zones" ("id","name","description","zone_members_count","created_at","updated_at") SELECT "id","name","description","zone_members_count","created_at","updated_at" FROM "aspree_zones"  (0.1ms) DROP TABLE "aspree_zones" ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234734"]]  (0.6ms) commit transaction Migrating to CreatePromotionRuleStores (20181007234735)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "spree_promotion_rules_stores" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "store_id" integer NOT NULL, "promotion_rule_id" integer NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_spree_promotion_rules_stores_on_store_id" ON "spree_promotion_rules_stores" ("store_id")  (0.1ms) CREATE INDEX "index_spree_promotion_rules_stores_on_promotion_rule_id" ON "spree_promotion_rules_stores" ("promotion_rule_id") ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234735"]]  (0.7ms) commit transaction Migrating to CreateStoreShippingMethods (20181007234736)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "spree_store_shipping_methods" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "store_id" integer NOT NULL, "shipping_method_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)  (0.1ms) CREATE INDEX "index_spree_store_shipping_methods_on_store_id" ON "spree_store_shipping_methods" ("store_id")  (0.1ms) CREATE INDEX "index_spree_store_shipping_methods_on_shipping_method_id" ON "spree_store_shipping_methods" ("shipping_method_id") ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234736"]]  (0.7ms) commit transaction Migrating to AddAvailableLocalesToStores (20181007234737)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "spree_stores" ADD "available_locales" varchar ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234737"]]  (0.6ms) commit transaction Migrating to AddAmountRemainingToStoreCreditEvents (20181007234738)  (0.1ms) begin transaction  (0.5ms) ALTER TABLE "spree_store_credit_events" ADD "amount_remaining" decimal(8,2) DEFAULT NULL AddAmountRemainingToStoreCreditEvents::StoreCredit Load (0.1ms) SELECT "spree_store_credits".* FROM "spree_store_credits" ORDER BY "spree_store_credits"."id" ASC LIMIT ? [["LIMIT", 1000]] ActiveRecord::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234738"]]  (0.6ms) commit transaction Migrating to AddJoinCharactersToPromotionCodeBatch (20181007234739)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "spree_promotion_code_batches" ADD "join_characters" varchar DEFAULT '_' NOT NULL ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234739"]]  (0.5ms) commit transaction Migrating to AddApiKeyToSpreeUsers (20181007234740)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "spree_users" ADD "api_key" varchar(40) ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234740"]]  (0.5ms) commit transaction Migrating to ResizeApiKeyField (20181007234741)  (0.0ms) begin transaction  (0.2ms) CREATE TEMPORARY TABLE "aspree_users" ("id" integer NOT NULL PRIMARY KEY, "crypted_password" varchar(128) DEFAULT NULL, "salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_token_expires_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "single_access_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_login_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "api_key" varchar(40) DEFAULT NULL)  (0.1ms) INSERT INTO "aspree_users" ("id","crypted_password","salt","email","remember_token","remember_token_expires_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","api_key") SELECT "id","crypted_password","salt","email","remember_token","remember_token_expires_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","api_key" FROM "spree_users"  (0.3ms) DROP TABLE "spree_users"  (0.2ms) CREATE TABLE "spree_users" ("id" integer NOT NULL PRIMARY KEY, "crypted_password" varchar(128) DEFAULT NULL, "salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_token_expires_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "single_access_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_login_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "api_key" varchar(48) DEFAULT NULL)  (0.1ms) INSERT INTO "spree_users" ("id","crypted_password","salt","email","remember_token","remember_token_expires_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","api_key") SELECT "id","crypted_password","salt","email","remember_token","remember_token_expires_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","api_key" FROM "aspree_users"  (0.1ms) DROP TABLE "aspree_users" ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234741"]]  (0.5ms) commit transaction Migrating to RenameApiKeyToSpreeApiKey (20181007234742)  (0.0ms) begin transaction  (0.2ms) CREATE TEMPORARY TABLE "aspree_users" ("id" integer NOT NULL PRIMARY KEY, "crypted_password" varchar(128) DEFAULT NULL, "salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_token_expires_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "single_access_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_login_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) INSERT INTO "aspree_users" ("id","crypted_password","salt","email","remember_token","remember_token_expires_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","crypted_password","salt","email","remember_token","remember_token_expires_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","api_key" FROM "spree_users"  (0.3ms) DROP TABLE "spree_users"  (0.2ms) CREATE TABLE "spree_users" ("id" integer NOT NULL PRIMARY KEY, "crypted_password" varchar(128) DEFAULT NULL, "salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_token_expires_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "single_access_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_login_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) INSERT INTO "spree_users" ("id","crypted_password","salt","email","remember_token","remember_token_expires_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","crypted_password","salt","email","remember_token","remember_token_expires_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "aspree_users"  (0.1ms) DROP TABLE "aspree_users" ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234742"]]  (0.8ms) commit transaction Migrating to AddIndexToUserSpreeApiKey (20181007234743)  (0.0ms) begin transaction  (0.2ms) CREATE INDEX "index_spree_users_on_spree_api_key" ON "spree_users" ("spree_api_key") ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234743"]]  (0.6ms) commit transaction Migrating to CreateUsers (20181007234744)  (0.0ms) begin transaction ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234744"]]  (0.6ms) commit transaction Migrating to RenameColumnsForDevise (20181007234745)  (0.0ms) begin transaction  (0.2ms) CREATE TEMPORARY TABLE "aspree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_token_expires_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "single_access_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_login_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.2ms) CREATE INDEX "tindex_aspree_users_on_spree_api_key" ON "aspree_users" ("spree_api_key")  (0.1ms) INSERT INTO "aspree_users" ("id","encrypted_password","salt","email","remember_token","remember_token_expires_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","crypted_password","salt","email","remember_token","remember_token_expires_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "spree_users"  (0.3ms) DROP TABLE "spree_users"  (0.2ms) CREATE TABLE "spree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_token_expires_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "single_access_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_login_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "index_spree_users_on_spree_api_key" ON "spree_users" ("spree_api_key")  (0.1ms) INSERT INTO "spree_users" ("id","encrypted_password","salt","email","remember_token","remember_token_expires_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","salt","email","remember_token","remember_token_expires_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "aspree_users"  (0.1ms) DROP TABLE "aspree_users"  (0.2ms) CREATE TEMPORARY TABLE "aspree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_token_expires_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "single_access_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_login_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "tindex_aspree_users_on_spree_api_key" ON "aspree_users" ("spree_api_key")  (0.1ms) INSERT INTO "aspree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_token_expires_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","salt","email","remember_token","remember_token_expires_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "spree_users"  (0.1ms) DROP TABLE "spree_users"  (0.2ms) CREATE TABLE "spree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_token_expires_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "single_access_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_login_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "index_spree_users_on_spree_api_key" ON "spree_users" ("spree_api_key")  (0.1ms) INSERT INTO "spree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_token_expires_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_token_expires_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "aspree_users"  (0.1ms) DROP TABLE "aspree_users"  (0.1ms) CREATE TEMPORARY TABLE "aspree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "single_access_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_login_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "tindex_aspree_users_on_spree_api_key" ON "aspree_users" ("spree_api_key")  (0.1ms) INSERT INTO "aspree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_token_expires_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "spree_users"  (0.1ms) DROP TABLE "spree_users"  (0.3ms) CREATE TABLE "spree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "single_access_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_login_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "index_spree_users_on_spree_api_key" ON "spree_users" ("spree_api_key")  (0.1ms) INSERT INTO "spree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "aspree_users"  (0.1ms) DROP TABLE "aspree_users"  (0.1ms) CREATE TEMPORARY TABLE "aspree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "single_access_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_login_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "tindex_aspree_users_on_spree_api_key" ON "aspree_users" ("spree_api_key")  (0.1ms) INSERT INTO "aspree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","single_access_token","perishable_token","sign_in_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","single_access_token","perishable_token","login_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "spree_users"  (0.1ms) DROP TABLE "spree_users"  (0.2ms) CREATE TABLE "spree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "single_access_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_login_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "index_spree_users_on_spree_api_key" ON "spree_users" ("spree_api_key")  (0.1ms) INSERT INTO "spree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","single_access_token","perishable_token","sign_in_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","single_access_token","perishable_token","sign_in_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "aspree_users"  (0.1ms) DROP TABLE "aspree_users"  (0.1ms) CREATE TEMPORARY TABLE "aspree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "single_access_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_attempts" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_login_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "tindex_aspree_users_on_spree_api_key" ON "aspree_users" ("spree_api_key")  (0.1ms) INSERT INTO "aspree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","single_access_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","single_access_token","perishable_token","sign_in_count","failed_login_count","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "spree_users"  (0.1ms) DROP TABLE "spree_users"  (0.2ms) CREATE TABLE "spree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "single_access_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_attempts" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_login_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "index_spree_users_on_spree_api_key" ON "spree_users" ("spree_api_key")  (0.1ms) INSERT INTO "spree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","single_access_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","single_access_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "aspree_users"  (0.1ms) DROP TABLE "aspree_users"  (0.1ms) CREATE TEMPORARY TABLE "aspree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "reset_password_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_attempts" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_login_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "tindex_aspree_users_on_spree_api_key" ON "aspree_users" ("spree_api_key")  (0.1ms) INSERT INTO "aspree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","single_access_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "spree_users"  (0.1ms) DROP TABLE "spree_users"  (0.2ms) CREATE TABLE "spree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "reset_password_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_attempts" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_login_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "index_spree_users_on_spree_api_key" ON "spree_users" ("spree_api_key")  (0.2ms) INSERT INTO "spree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "aspree_users"  (0.1ms) DROP TABLE "aspree_users"  (0.2ms) CREATE TEMPORARY TABLE "aspree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "reset_password_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_attempts" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_sign_in_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "tindex_aspree_users_on_spree_api_key" ON "aspree_users" ("spree_api_key")  (0.1ms) INSERT INTO "aspree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_login_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "spree_users"  (0.1ms) DROP TABLE "spree_users"  (0.2ms) CREATE TABLE "spree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "reset_password_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_attempts" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_sign_in_at" datetime DEFAULT NULL, "last_login_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "index_spree_users_on_spree_api_key" ON "spree_users" ("spree_api_key")  (0.1ms) INSERT INTO "spree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "aspree_users"  (0.1ms) DROP TABLE "aspree_users"  (0.1ms) CREATE TEMPORARY TABLE "aspree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "reset_password_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_attempts" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_sign_in_at" datetime DEFAULT NULL, "last_sign_in_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "tindex_aspree_users_on_spree_api_key" ON "aspree_users" ("spree_api_key")  (0.1ms) INSERT INTO "aspree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_login_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "spree_users"  (0.1ms) DROP TABLE "spree_users"  (0.2ms) CREATE TABLE "spree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "reset_password_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_attempts" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_sign_in_at" datetime DEFAULT NULL, "last_sign_in_at" datetime DEFAULT NULL, "current_login_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "index_spree_users_on_spree_api_key" ON "spree_users" ("spree_api_key")  (0.1ms) INSERT INTO "spree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "aspree_users"  (0.1ms) DROP TABLE "aspree_users"  (0.1ms) CREATE TEMPORARY TABLE "aspree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "reset_password_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_attempts" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_sign_in_at" datetime DEFAULT NULL, "last_sign_in_at" datetime DEFAULT NULL, "current_sign_in_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "tindex_aspree_users_on_spree_api_key" ON "aspree_users" ("spree_api_key")  (0.1ms) INSERT INTO "aspree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_login_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "spree_users"  (0.1ms) DROP TABLE "spree_users"  (0.2ms) CREATE TABLE "spree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "reset_password_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_attempts" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_sign_in_at" datetime DEFAULT NULL, "last_sign_in_at" datetime DEFAULT NULL, "current_sign_in_ip" varchar DEFAULT NULL, "last_login_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "index_spree_users_on_spree_api_key" ON "spree_users" ("spree_api_key")  (0.1ms) INSERT INTO "spree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "aspree_users"  (0.1ms) DROP TABLE "aspree_users"  (0.1ms) CREATE TEMPORARY TABLE "aspree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "reset_password_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_attempts" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_sign_in_at" datetime DEFAULT NULL, "last_sign_in_at" datetime DEFAULT NULL, "current_sign_in_ip" varchar DEFAULT NULL, "last_sign_in_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "tindex_aspree_users_on_spree_api_key" ON "aspree_users" ("spree_api_key")  (0.1ms) INSERT INTO "aspree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_login_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "spree_users"  (0.1ms) DROP TABLE "spree_users"  (0.2ms) CREATE TABLE "spree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "reset_password_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_attempts" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_sign_in_at" datetime DEFAULT NULL, "last_sign_in_at" datetime DEFAULT NULL, "current_sign_in_ip" varchar DEFAULT NULL, "last_sign_in_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL)  (0.1ms) CREATE INDEX "index_spree_users_on_spree_api_key" ON "spree_users" ("spree_api_key")  (0.1ms) INSERT INTO "spree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key" FROM "aspree_users"  (0.1ms) DROP TABLE "aspree_users"  (0.2ms) ALTER TABLE "spree_users" ADD "authentication_token" varchar  (0.2ms) ALTER TABLE "spree_users" ADD "unlock_token" varchar  (0.2ms) ALTER TABLE "spree_users" ADD "locked_at" datetime  (0.1ms) CREATE TEMPORARY TABLE "aspree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "reset_password_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_attempts" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_sign_in_at" datetime DEFAULT NULL, "last_sign_in_at" datetime DEFAULT NULL, "current_sign_in_ip" varchar DEFAULT NULL, "last_sign_in_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "openid_identifier" varchar DEFAULT NULL, "spree_api_key" varchar(48) DEFAULT NULL, "authentication_token" varchar DEFAULT NULL, "unlock_token" varchar DEFAULT NULL, "locked_at" datetime DEFAULT NULL)  (0.1ms) CREATE INDEX "tindex_aspree_users_on_spree_api_key" ON "aspree_users" ("spree_api_key")  (0.1ms) INSERT INTO "aspree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key","authentication_token","unlock_token","locked_at") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","login","ship_address_id","bill_address_id","created_at","updated_at","openid_identifier","spree_api_key","authentication_token","unlock_token","locked_at" FROM "spree_users"  (0.1ms) DROP TABLE "spree_users"  (0.2ms) CREATE TABLE "spree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "reset_password_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_attempts" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_sign_in_at" datetime DEFAULT NULL, "last_sign_in_at" datetime DEFAULT NULL, "current_sign_in_ip" varchar DEFAULT NULL, "last_sign_in_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "spree_api_key" varchar(48) DEFAULT NULL, "authentication_token" varchar DEFAULT NULL, "unlock_token" varchar DEFAULT NULL, "locked_at" datetime DEFAULT NULL)  (0.3ms) CREATE INDEX "index_spree_users_on_spree_api_key" ON "spree_users" ("spree_api_key")  (0.2ms) INSERT INTO "spree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","login","ship_address_id","bill_address_id","created_at","updated_at","spree_api_key","authentication_token","unlock_token","locked_at") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","login","ship_address_id","bill_address_id","created_at","updated_at","spree_api_key","authentication_token","unlock_token","locked_at" FROM "aspree_users"  (0.1ms) DROP TABLE "aspree_users" ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234745"]]  (0.6ms) commit transaction Migrating to ConvertUserRememberField (20181007234746)  (0.0ms) begin transaction  (0.2ms) CREATE TEMPORARY TABLE "aspree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "remember_created_at" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "reset_password_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_attempts" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_sign_in_at" datetime DEFAULT NULL, "last_sign_in_at" datetime DEFAULT NULL, "current_sign_in_ip" varchar DEFAULT NULL, "last_sign_in_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "spree_api_key" varchar(48) DEFAULT NULL, "authentication_token" varchar DEFAULT NULL, "unlock_token" varchar DEFAULT NULL, "locked_at" datetime DEFAULT NULL)  (0.1ms) CREATE INDEX "tindex_aspree_users_on_spree_api_key" ON "aspree_users" ("spree_api_key")  (0.1ms) INSERT INTO "aspree_users" ("id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","login","ship_address_id","bill_address_id","created_at","updated_at","spree_api_key","authentication_token","unlock_token","locked_at") SELECT "id","encrypted_password","password_salt","email","remember_token","remember_created_at","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","login","ship_address_id","bill_address_id","created_at","updated_at","spree_api_key","authentication_token","unlock_token","locked_at" FROM "spree_users"  (0.3ms) DROP TABLE "spree_users"  (0.2ms) CREATE TABLE "spree_users" ("id" integer NOT NULL PRIMARY KEY, "encrypted_password" varchar(128) DEFAULT NULL, "password_salt" varchar(128) DEFAULT NULL, "email" varchar DEFAULT NULL, "remember_token" varchar DEFAULT NULL, "persistence_token" varchar DEFAULT NULL, "reset_password_token" varchar DEFAULT NULL, "perishable_token" varchar DEFAULT NULL, "sign_in_count" integer DEFAULT 0 NOT NULL, "failed_attempts" integer DEFAULT 0 NOT NULL, "last_request_at" datetime DEFAULT NULL, "current_sign_in_at" datetime DEFAULT NULL, "last_sign_in_at" datetime DEFAULT NULL, "current_sign_in_ip" varchar DEFAULT NULL, "last_sign_in_ip" varchar DEFAULT NULL, "login" varchar DEFAULT NULL, "ship_address_id" integer DEFAULT NULL, "bill_address_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "spree_api_key" varchar(48) DEFAULT NULL, "authentication_token" varchar DEFAULT NULL, "unlock_token" varchar DEFAULT NULL, "locked_at" datetime DEFAULT NULL)  (0.1ms) CREATE INDEX "index_spree_users_on_spree_api_key" ON "spree_users" ("spree_api_key")  (0.1ms) INSERT INTO "spree_users" ("id","encrypted_password","password_salt","email","remember_token","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","login","ship_address_id","bill_address_id","created_at","updated_at","spree_api_key","authentication_token","unlock_token","locked_at") SELECT "id","encrypted_password","password_salt","email","remember_token","persistence_token","reset_password_token","perishable_token","sign_in_count","failed_attempts","last_request_at","current_sign_in_at","last_sign_in_at","current_sign_in_ip","last_sign_in_ip","login","ship_address_id","bill_address_id","created_at","updated_at","spree_api_key","authentication_token","unlock_token","locked_at" FROM "aspree_users"  (0.1ms) DROP TABLE "aspree_users"  (0.2ms) ALTER TABLE "spree_users" ADD "remember_created_at" datetime ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234746"]]  (0.7ms) commit transaction Migrating to AddResetPasswordSentAtToSpreeUsers (20181007234747)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "spree_users" ADD "reset_password_sent_at" datetime ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234747"]]  (0.6ms) commit transaction Migrating to MakeUsersEmailIndexUnique (20181007234748)  (0.0ms) begin transaction  (0.2ms) CREATE UNIQUE INDEX "email_idx_unique" ON "spree_users" ("email") ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234748"]]  (0.7ms) commit transaction Migrating to AddDeletedAtToUsers (20181007234749)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "spree_users" ADD "deleted_at" datetime  (0.1ms) CREATE INDEX "index_spree_users_on_deleted_at" ON "spree_users" ("deleted_at") ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234749"]]  (0.7ms) commit transaction Migrating to AddConfirmableToUsers (20181007234750)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "spree_users" ADD "confirmation_token" varchar  (0.2ms) ALTER TABLE "spree_users" ADD "confirmed_at" datetime  (0.2ms) ALTER TABLE "spree_users" ADD "confirmation_sent_at" datetime ActiveRecord::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20181007234750"]]  (0.6ms) commit transaction ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.0ms) begin transaction ActiveRecord::InternalMetadata Create (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2018-10-07 23:47:26.361191"], ["updated_at", "2018-10-07 23:47:26.361191"]]  (0.7ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (1.7ms) PRAGMA foreign_keys  (0.1ms) PRAGMA foreign_keys = OFF  (1.6ms) DELETE FROM "ar_internal_metadata";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.5ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';  (1.3ms) DELETE FROM "active_storage_blobs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'active_storage_blobs';  (1.7ms) DELETE FROM "active_storage_attachments";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'active_storage_attachments';  (2.9ms) DELETE FROM "friendly_id_slugs";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'friendly_id_slugs';  (2.3ms) DELETE FROM "spree_addresses";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_addresses';  (1.7ms) DELETE FROM "spree_adjustment_reasons";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_adjustment_reasons';  (3.4ms) DELETE FROM "spree_adjustments";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_adjustments';  (2.1ms) DELETE FROM "spree_assets";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_assets';  (1.6ms) DELETE FROM "spree_calculators";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_calculators';  (1.9ms) DELETE FROM "spree_cartons";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_cartons';  (1.1ms) DELETE FROM "spree_countries";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_countries';  (0.7ms) DELETE FROM "spree_credit_cards";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_credit_cards';  (0.8ms) DELETE FROM "spree_customer_returns";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_customer_returns';  (1.3ms) DELETE FROM "spree_line_item_actions";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_line_item_actions';  (1.0ms) DELETE FROM "spree_log_entries";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_log_entries';  (0.6ms) DELETE FROM "spree_option_type_prototypes";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_option_type_prototypes';  (0.7ms) DELETE FROM "spree_option_types";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_option_types';  (0.6ms) DELETE FROM "spree_option_values";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_option_values';  (1.2ms) DELETE FROM "spree_option_values_variants";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_option_values_variants';  (1.2ms) DELETE FROM "spree_order_mutexes";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_order_mutexes';  (3.2ms) DELETE FROM "spree_orders";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_orders';  (1.7ms) DELETE FROM "spree_orders_promotions";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_orders_promotions';  (1.0ms) DELETE FROM "spree_payment_capture_events";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_payment_capture_events';  (1.9ms) DELETE FROM "spree_payments";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_payments';  (1.0ms) DELETE FROM "spree_preferences";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_preferences';  (1.5ms) DELETE FROM "spree_product_option_types";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_product_option_types';  (1.3ms) DELETE FROM "spree_product_promotion_rules";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_product_promotion_rules';  (1.7ms) DELETE FROM "spree_product_properties";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_product_properties';  (1.8ms) DELETE FROM "spree_products";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_products';  (1.4ms) DELETE FROM "spree_products_taxons";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_products_taxons';  (1.3ms) DELETE FROM "spree_promotion_action_line_items";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_action_line_items';  (1.5ms) DELETE FROM "spree_promotion_actions";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_actions';  (0.8ms) DELETE FROM "spree_promotion_categories";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_categories';  (1.5ms) DELETE FROM "spree_promotion_codes";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_codes';  (1.3ms) DELETE FROM "spree_promotion_rule_taxons";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_rule_taxons';  (1.3ms) DELETE FROM "spree_promotion_rules";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_rules';  (1.3ms) DELETE FROM "spree_promotion_rules_users";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_rules_users';  (2.4ms) DELETE FROM "spree_promotions";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotions';  (0.8ms) DELETE FROM "spree_properties";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_properties';  (0.9ms) DELETE FROM "spree_property_prototypes";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_property_prototypes';  (0.9ms) DELETE FROM "spree_prototype_taxons";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_prototype_taxons';  (0.8ms) DELETE FROM "spree_prototypes";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_prototypes';  (0.8ms) DELETE FROM "spree_refund_reasons";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_refund_reasons';  (1.5ms) DELETE FROM "spree_refunds";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_refunds';  (0.9ms) DELETE FROM "spree_reimbursement_credits";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_reimbursement_credits';  (0.9ms) DELETE FROM "spree_reimbursement_types";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_reimbursement_types';  (0.8ms) DELETE FROM "spree_reimbursements";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_reimbursements';  (0.6ms) DELETE FROM "spree_return_authorizations";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_return_authorizations';  (1.1ms) DELETE FROM "spree_return_items";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_return_items';  (0.8ms) DELETE FROM "spree_return_reasons";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_return_reasons';  (1.1ms) DELETE FROM "spree_roles";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_roles';  (1.4ms) DELETE FROM "spree_roles_users";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_roles_users';  (1.8ms) DELETE FROM "spree_shipments";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_shipments';  (0.9ms) DELETE FROM "spree_shipping_categories";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_shipping_categories';  (1.1ms) DELETE FROM "spree_shipping_method_categories";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_shipping_method_categories';  (1.3ms) DELETE FROM "spree_shipping_method_stock_locations";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_shipping_method_stock_locations';  (0.8ms) DELETE FROM "spree_shipping_method_zones";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_shipping_method_zones';  (1.3ms) DELETE FROM "spree_shipping_rate_taxes";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_shipping_rate_taxes';  (1.0ms) DELETE FROM "spree_shipping_rates";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_shipping_rates';  (0.8ms) DELETE FROM "spree_state_changes";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_state_changes';  (1.1ms) DELETE FROM "spree_states";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_states';  (1.6ms) DELETE FROM "spree_stock_items";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_stock_items';  (1.3ms) DELETE FROM "spree_stock_locations";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_stock_locations';  (1.2ms) DELETE FROM "spree_stock_movements";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_stock_movements';  (0.6ms) DELETE FROM "spree_store_credit_categories";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_store_credit_categories';  (0.8ms) DELETE FROM "spree_store_credit_events";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_store_credit_events';  (0.7ms) DELETE FROM "spree_store_credit_types";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_store_credit_types';  (0.7ms) DELETE FROM "spree_store_credit_update_reasons";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_store_credit_update_reasons';  (1.4ms) DELETE FROM "spree_store_payment_methods";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_store_payment_methods';  (1.4ms) DELETE FROM "spree_stores";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_stores';  (1.0ms) DELETE FROM "spree_tax_categories";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_tax_categories';  (1.0ms) DELETE FROM "spree_taxonomies";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_taxonomies';  (1.8ms) DELETE FROM "spree_taxons";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_taxons';  (1.1ms) DELETE FROM "spree_unit_cancels";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_unit_cancels';  (0.9ms) DELETE FROM "spree_user_addresses";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_user_addresses';  (1.1ms) DELETE FROM "spree_user_stock_locations";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_user_stock_locations';  (0.8ms) DELETE FROM "spree_variant_property_rule_conditions";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_variant_property_rule_conditions';  (0.8ms) DELETE FROM "spree_variant_property_rule_values";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_variant_property_rule_values';  (0.7ms) DELETE FROM "spree_variant_property_rules";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_variant_property_rules';  (1.5ms) DELETE FROM "spree_variants";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_variants';  (1.2ms) DELETE FROM "spree_zone_members";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_zone_members';  (1.2ms) DELETE FROM "spree_wallet_payment_sources";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_wallet_payment_sources';  (0.8ms) DELETE FROM "spree_prices";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_prices';  (1.6ms) DELETE FROM "spree_line_items";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_line_items';  (0.9ms) DELETE FROM "spree_payment_methods";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_payment_methods';  (0.7ms) DELETE FROM "spree_promotion_code_batches";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_code_batches';  (0.9ms) DELETE FROM "spree_shipping_methods";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_shipping_methods';  (0.9ms) DELETE FROM "spree_store_credits";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_store_credits';  (1.4ms) DELETE FROM "spree_inventory_units";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_inventory_units';  (1.1ms) DELETE FROM "spree_tax_rate_tax_categories";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_tax_rate_tax_categories';  (1.1ms) DELETE FROM "spree_tax_rates";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_tax_rates';  (0.6ms) DELETE FROM "spree_zones";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_zones';  (1.2ms) DELETE FROM "spree_promotion_rules_stores";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_rules_stores';  (1.1ms) DELETE FROM "spree_store_shipping_methods";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_store_shipping_methods';  (1.3ms) DELETE FROM "spree_users";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_users';  (0.0ms) PRAGMA foreign_keys = 1  (0.0ms) PRAGMA foreign_keys  (0.0ms) PRAGMA foreign_keys = OFF  (0.5ms) DELETE FROM "ar_internal_metadata";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'ar_internal_metadata';  (0.5ms) DELETE FROM "active_storage_blobs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'active_storage_blobs';  (0.5ms) DELETE FROM "active_storage_attachments";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'active_storage_attachments';  (0.6ms) DELETE FROM "friendly_id_slugs";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'friendly_id_slugs';  (0.6ms) DELETE FROM "spree_addresses";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_addresses';  (0.5ms) DELETE FROM "spree_adjustment_reasons";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_adjustment_reasons';  (0.6ms) DELETE FROM "spree_adjustments";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_adjustments';  (0.6ms) DELETE FROM "spree_assets";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_assets';  (0.5ms) DELETE FROM "spree_calculators";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_calculators';  (0.5ms) DELETE FROM "spree_cartons";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_cartons';  (0.5ms) DELETE FROM "spree_countries";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_countries';  (0.5ms) DELETE FROM "spree_credit_cards";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_credit_cards';  (0.5ms) DELETE FROM "spree_customer_returns";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_customer_returns';  (0.5ms) DELETE FROM "spree_line_item_actions";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_line_item_actions';  (0.5ms) DELETE FROM "spree_log_entries";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_log_entries';  (0.5ms) DELETE FROM "spree_option_type_prototypes";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_option_type_prototypes';  (0.5ms) DELETE FROM "spree_option_types";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_option_types';  (0.5ms) DELETE FROM "spree_option_values";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_option_values';  (0.6ms) DELETE FROM "spree_option_values_variants";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_option_values_variants';  (0.5ms) DELETE FROM "spree_order_mutexes";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_order_mutexes';  (0.6ms) DELETE FROM "spree_orders";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_orders';  (0.5ms) DELETE FROM "spree_orders_promotions";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_orders_promotions';  (0.5ms) DELETE FROM "spree_payment_capture_events";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_payment_capture_events';  (0.5ms) DELETE FROM "spree_payments";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_payments';  (0.5ms) DELETE FROM "spree_preferences";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_preferences';  (0.5ms) DELETE FROM "spree_product_option_types";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_product_option_types';  (0.5ms) DELETE FROM "spree_product_promotion_rules";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_product_promotion_rules';  (0.7ms) DELETE FROM "spree_product_properties";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_product_properties';  (0.5ms) DELETE FROM "spree_products";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_products';  (0.6ms) DELETE FROM "spree_products_taxons";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_products_taxons';  (0.6ms) DELETE FROM "spree_promotion_action_line_items";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_action_line_items';  (0.6ms) DELETE FROM "spree_promotion_actions";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_actions';  (0.5ms) DELETE FROM "spree_promotion_categories";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_categories';  (0.5ms) DELETE FROM "spree_promotion_codes";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_codes';  (0.5ms) DELETE FROM "spree_promotion_rule_taxons";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_rule_taxons';  (0.5ms) DELETE FROM "spree_promotion_rules";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_rules';  (0.5ms) DELETE FROM "spree_promotion_rules_users";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_rules_users';  (0.6ms) DELETE FROM "spree_promotions";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotions';  (0.5ms) DELETE FROM "spree_properties";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_properties';  (0.5ms) DELETE FROM "spree_property_prototypes";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_property_prototypes';  (0.5ms) DELETE FROM "spree_prototype_taxons";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_prototype_taxons';  (0.5ms) DELETE FROM "spree_prototypes";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_prototypes';  (0.7ms) DELETE FROM "spree_refund_reasons";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_refund_reasons';  (0.6ms) DELETE FROM "spree_refunds";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_refunds';  (0.5ms) DELETE FROM "spree_reimbursement_credits";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_reimbursement_credits';  (0.5ms) DELETE FROM "spree_reimbursement_types";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_reimbursement_types';  (0.6ms) DELETE FROM "spree_reimbursements";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_reimbursements';  (0.5ms) DELETE FROM "spree_return_authorizations";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_return_authorizations';  (0.5ms) DELETE FROM "spree_return_items";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_return_items';  (0.5ms) DELETE FROM "spree_return_reasons";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_return_reasons';  (0.5ms) DELETE FROM "spree_roles";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_roles';  (0.5ms) DELETE FROM "spree_roles_users";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_roles_users';  (0.5ms) DELETE FROM "spree_shipments";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_shipments';  (0.5ms) DELETE FROM "spree_shipping_categories";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_shipping_categories';  (0.7ms) DELETE FROM "spree_shipping_method_categories";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_shipping_method_categories';  (0.6ms) DELETE FROM "spree_shipping_method_stock_locations";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_shipping_method_stock_locations';  (0.5ms) DELETE FROM "spree_shipping_method_zones";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_shipping_method_zones';  (0.5ms) DELETE FROM "spree_shipping_rate_taxes";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_shipping_rate_taxes';  (0.6ms) DELETE FROM "spree_shipping_rates";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_shipping_rates';  (0.6ms) DELETE FROM "spree_state_changes";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_state_changes';  (0.6ms) DELETE FROM "spree_states";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_states';  (0.6ms) DELETE FROM "spree_stock_items";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_stock_items';  (0.5ms) DELETE FROM "spree_stock_locations";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_stock_locations';  (0.5ms) DELETE FROM "spree_stock_movements";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_stock_movements';  (0.6ms) DELETE FROM "spree_store_credit_categories";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_store_credit_categories';  (0.5ms) DELETE FROM "spree_store_credit_events";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_store_credit_events';  (0.6ms) DELETE FROM "spree_store_credit_types";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_store_credit_types';  (0.5ms) DELETE FROM "spree_store_credit_update_reasons";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_store_credit_update_reasons';  (0.6ms) DELETE FROM "spree_store_payment_methods";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_store_payment_methods';  (0.5ms) DELETE FROM "spree_stores";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_stores';  (0.5ms) DELETE FROM "spree_tax_categories";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_tax_categories';  (0.5ms) DELETE FROM "spree_taxonomies";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_taxonomies';  (0.6ms) DELETE FROM "spree_taxons";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_taxons';  (0.5ms) DELETE FROM "spree_unit_cancels";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_unit_cancels';  (0.5ms) DELETE FROM "spree_user_addresses";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_user_addresses';  (0.5ms) DELETE FROM "spree_user_stock_locations";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_user_stock_locations';  (0.5ms) DELETE FROM "spree_variant_property_rule_conditions";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_variant_property_rule_conditions';  (0.6ms) DELETE FROM "spree_variant_property_rule_values";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_variant_property_rule_values';  (0.5ms) DELETE FROM "spree_variant_property_rules";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_variant_property_rules';  (0.6ms) DELETE FROM "spree_variants";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_variants';  (0.6ms) DELETE FROM "spree_zone_members";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_zone_members';  (0.5ms) DELETE FROM "spree_wallet_payment_sources";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_wallet_payment_sources';  (0.6ms) DELETE FROM "spree_prices";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_prices';  (0.5ms) DELETE FROM "spree_line_items";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_line_items';  (0.7ms) DELETE FROM "spree_payment_methods";  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_payment_methods';  (0.7ms) DELETE FROM "spree_promotion_code_batches";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_code_batches';  (0.6ms) DELETE FROM "spree_shipping_methods";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_shipping_methods';  (0.7ms) DELETE FROM "spree_store_credits";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_store_credits';  (0.6ms) DELETE FROM "spree_inventory_units";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_inventory_units';  (0.6ms) DELETE FROM "spree_tax_rate_tax_categories";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_tax_rate_tax_categories';  (0.6ms) DELETE FROM "spree_tax_rates";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_tax_rates';  (0.5ms) DELETE FROM "spree_zones";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_zones';  (0.6ms) DELETE FROM "spree_promotion_rules_stores";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_promotion_rules_stores';  (0.6ms) DELETE FROM "spree_store_shipping_methods";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_store_shipping_methods';  (0.6ms) DELETE FROM "spree_users";  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';  (0.1ms) DELETE FROM sqlite_sequence where name = 'spree_users';  (0.0ms) PRAGMA foreign_keys = 1  (0.1ms) begin transaction  (0.1ms) commit transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_2 Spree::Store Exists (0.4ms) SELECT 1 AS one FROM "spree_stores" WHERE "spree_stores"."code" = ? LIMIT ? [["code", "spree_1"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "spree_stores" WHERE "spree_stores"."default" = ? [["default", 1]] Spree::Store Create (0.8ms) INSERT INTO "spree_stores" ("name", "url", "meta_description", "seo_title", "mail_from_address", "code", "default", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["name", "Spree Test Store 1"], ["url", "www.example1.com"], ["meta_description", "My Store SEO description"], ["seo_title", "My Store SEO name"], ["mail_from_address", "spree@example.org"], ["code", "spree_1"], ["default", 1], ["created_at", "2018-10-07 23:56:16.305699"], ["updated_at", "2018-10-07 23:56:16.305699"]]  (0.0ms) RELEASE SAVEPOINT active_record_2  (0.1ms) SAVEPOINT active_record_2 Spree::Taxonomy Load (0.1ms) SELECT "spree_taxonomies".* FROM "spree_taxonomies" WHERE (1 = 1) AND ("spree_taxonomies"."position" IS NOT NULL) ORDER BY "spree_taxonomies"."position" DESC LIMIT ? [["LIMIT", 1]] Spree::Taxonomy Create (0.1ms) INSERT INTO "spree_taxonomies" ("name", "created_at", "updated_at", "position") VALUES (?, ?, ?, ?) [["name", "Brand"], ["created_at", "2018-10-07 23:56:16.360594"], ["updated_at", "2018-10-07 23:56:16.360594"], ["position", 1]] Spree::Taxon Load (0.2ms) SELECT "spree_taxons".* FROM "spree_taxons" WHERE "spree_taxons"."taxonomy_id" = ? AND "spree_taxons"."parent_id" IS NULL LIMIT ? [["taxonomy_id", 1], ["LIMIT", 1]] Spree::Taxon Load (0.1ms) SELECT "spree_taxons".* FROM "spree_taxons" ORDER BY "spree_taxons"."rgt" DESC LIMIT ? [["LIMIT", 1]] Spree::Taxon Load (0.0ms) SELECT "spree_taxons".* FROM "spree_taxons" ORDER BY "spree_taxons"."rgt" DESC LIMIT ? [["LIMIT", 1]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_2  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.4ms) rollback transaction