solidus_bank_transfer 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +26 -0
- data/README.md +63 -0
- data/Rakefile +32 -0
- data/app/assets/javascripts/spree/backend/solidus_bank_transfer.js +2 -0
- data/app/assets/javascripts/spree/frontend/solidus_bank_transfer.js +2 -0
- data/app/assets/stylesheets/spree/backend/solidus_bank_transfer.css +4 -0
- data/app/assets/stylesheets/spree/frontend/solidus_bank_transfer.css +4 -0
- data/app/models/spree/payment_method/bank_transfer.rb +46 -0
- data/app/views/spree/checkout/payment/_banktransfer.html.erb +16 -0
- data/app/views/spree/order_mailer/_bank_transfer_details.html.erb +23 -0
- data/app/views/spree/orders/_bank_transfer_details.html.erb +22 -0
- data/config/locales/en.yml +14 -0
- data/config/locales/it.yml +14 -0
- data/config/routes.rb +5 -0
- data/lib/generators/solidus_bank_transfer/install/install_generator.rb +32 -0
- data/lib/solidus_bank_transfer.rb +4 -0
- data/lib/solidus_bank_transfer/engine.rb +26 -0
- data/lib/solidus_bank_transfer/factories.rb +17 -0
- data/lib/solidus_bank_transfer/version.rb +5 -0
- data/spec/dummy/README.md +24 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/config/manifest.js +3 -0
- data/spec/dummy/app/assets/javascripts/cable.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
- data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
- data/spec/dummy/app/controllers/application_controller.rb +2 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/jobs/application_job.rb +2 -0
- data/spec/dummy/app/mailers/application_mailer.rb +4 -0
- data/spec/dummy/app/models/application_record.rb +3 -0
- data/spec/dummy/app/views/layouts/application.html.erb +15 -0
- data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +33 -0
- data/spec/dummy/bin/update +28 -0
- data/spec/dummy/config.ru +5 -0
- data/spec/dummy/config/application.rb +54 -0
- data/spec/dummy/config/boot.rb +6 -0
- data/spec/dummy/config/cable.yml +10 -0
- data/spec/dummy/config/credentials.yml.enc +1 -0
- data/spec/dummy/config/database.yml +21 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +61 -0
- data/spec/dummy/config/environments/production.rb +94 -0
- data/spec/dummy/config/environments/test.rb +33 -0
- data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
- data/spec/dummy/config/initializers/assets.rb +12 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/content_security_policy.rb +25 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/spree.rb +52 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +33 -0
- data/spec/dummy/config/master.key +1 -0
- data/spec/dummy/config/routes.rb +9 -0
- data/spec/dummy/config/storage.yml +34 -0
- data/spec/dummy/db/migrate/20190822070920_create_active_storage_tables.active_storage.rb +27 -0
- data/spec/dummy/db/migrate/20190822070921_solidus_one_four.spree.rb +1103 -0
- data/spec/dummy/db/migrate/20190822070922_create_spree_wallet_payment_sources.spree.rb +28 -0
- data/spec/dummy/db/migrate/20190822070923_migrate_credit_cards_to_wallet_payment_sources.spree.rb +30 -0
- data/spec/dummy/db/migrate/20190822070924_remove_is_default_from_prices.spree.rb +8 -0
- data/spec/dummy/db/migrate/20190822070925_remove_currency_from_line_items.spree.rb +8 -0
- data/spec/dummy/db/migrate/20190822070926_add_available_to_columns_and_remove_display_on_from_payment_methods.spree.rb +31 -0
- data/spec/dummy/db/migrate/20190822070927_create_spree_promotion_code_batch.spree.rb +39 -0
- data/spec/dummy/db/migrate/20190822070928_add_available_to_users_and_remove_display_on_from_shipping_methods.spree.rb +23 -0
- data/spec/dummy/db/migrate/20190822070929_add_index_to_spree_payments_number.spree.rb +8 -0
- data/spec/dummy/db/migrate/20190822070930_remove_spree_store_credits_column.spree.rb +8 -0
- data/spec/dummy/db/migrate/20190822070931_add_lft_and_rgt_indexes_to_taxons.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190822070932_remove_order_id_from_inventory_units.spree.rb +31 -0
- data/spec/dummy/db/migrate/20190822070933_transform_tax_rate_category_relation.spree.rb +51 -0
- data/spec/dummy/db/migrate/20190822070934_add_roles_unique_constraints.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190822070935_add_time_range_to_tax_rate.spree.rb +9 -0
- data/spec/dummy/db/migrate/20190822070936_rename_bogus_gateways.spree.rb +19 -0
- data/spec/dummy/db/migrate/20190822070937_remove_default_tax_from_spree_zones.spree.rb +8 -0
- data/spec/dummy/db/migrate/20190822070938_create_promotion_rule_stores.spree.rb +13 -0
- data/spec/dummy/db/migrate/20190822070939_create_store_shipping_methods.spree.rb +13 -0
- data/spec/dummy/db/migrate/20190822070940_add_available_locales_to_stores.spree.rb +10 -0
- data/spec/dummy/db/migrate/20190822070941_add_amount_remaining_to_store_credit_events.spree.rb +62 -0
- data/spec/dummy/db/migrate/20190822070942_add_join_characters_to_promotion_code_batch.spree.rb +12 -0
- data/spec/dummy/db/migrate/20190822070943_create_spree_store_credit_reasons_table.spree.rb +56 -0
- data/spec/dummy/db/migrate/20190822070944_remove_code_from_spree_promotions.spree.rb +43 -0
- data/spec/dummy/db/migrate/20190822070945_drop_spree_store_credit_update_reasons.spree.rb +20 -0
- data/spec/dummy/db/migrate/20190822070946_add_api_key_to_spree_users.spree_api.rb +10 -0
- data/spec/dummy/db/migrate/20190822070947_resize_api_key_field.spree_api.rb +10 -0
- data/spec/dummy/db/migrate/20190822070948_rename_api_key_to_spree_api_key.spree_api.rb +10 -0
- data/spec/dummy/db/migrate/20190822070949_add_index_to_user_spree_api_key.spree_api.rb +10 -0
- data/spec/dummy/db/migrate/20190822070950_create_users.solidus_auth.rb +30 -0
- data/spec/dummy/db/migrate/20190822070951_rename_columns_for_devise.solidus_auth.rb +38 -0
- data/spec/dummy/db/migrate/20190822070952_convert_user_remember_field.solidus_auth.rb +12 -0
- data/spec/dummy/db/migrate/20190822070953_add_reset_password_sent_at_to_spree_users.solidus_auth.rb +9 -0
- data/spec/dummy/db/migrate/20190822070954_make_users_email_index_unique.solidus_auth.rb +10 -0
- data/spec/dummy/db/migrate/20190822070955_add_deleted_at_to_users.solidus_auth.rb +7 -0
- data/spec/dummy/db/migrate/20190822070956_add_confirmable_to_users.solidus_auth.rb +8 -0
- data/spec/dummy/db/schema.rb +1194 -0
- data/spec/dummy/db/seeds.rb +10 -0
- data/spec/dummy/log/test.log +1058 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/dummy/public/apple-touch-icon.png +0 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/tmp/development_secret.txt +1 -0
- data/spec/dummy/vendor/assets/javascripts/spree/backend/all.js +11 -0
- data/spec/dummy/vendor/assets/javascripts/spree/frontend/all.js +11 -0
- data/spec/dummy/vendor/assets/stylesheets/spree/backend/all.css +10 -0
- data/spec/dummy/vendor/assets/stylesheets/spree/frontend/all.css +10 -0
- data/spec/models/spree/payment_method/bank_transfer_spec.rb +146 -0
- data/spec/spec_helper.rb +89 -0
- metadata +429 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# This file should contain all the record creation needed to seed the database with its default values.
|
|
2
|
+
# The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup).
|
|
3
|
+
#
|
|
4
|
+
# Examples:
|
|
5
|
+
#
|
|
6
|
+
# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
|
|
7
|
+
# Character.create(name: 'Luke', movie: movies.first)
|
|
8
|
+
|
|
9
|
+
Spree::Core::Engine.load_seed if defined?(Spree::Core)
|
|
10
|
+
Spree::Auth::Engine.load_seed if defined?(Spree::Auth)
|
|
@@ -0,0 +1,1058 @@
|
|
|
1
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE DATABASE "solidus_bank_transfer_solidus_test" ENCODING = 'utf8'[0m
|
|
2
|
+
[1m[36mActiveRecord::InternalMetadata Load (47.0ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
|
3
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
4
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
5
|
+
[1m[35m (45.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
6
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
|
7
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
8
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
|
9
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
10
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "environment"]]
|
|
11
|
+
[1m[35m (276.8ms)[0m [1m[35mDROP DATABASE IF EXISTS "solidus_bank_transfer_solidus_test"[0m
|
|
12
|
+
[1m[35m (651.2ms)[0m [1m[35mCREATE DATABASE "solidus_bank_transfer_solidus_test" ENCODING = 'utf8'[0m
|
|
13
|
+
[1m[35m (9.2ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
|
14
|
+
[1m[35m (2.8ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
|
15
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT pg_try_advisory_lock(7932130290496454280)[0m
|
|
16
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
17
|
+
Migrating to CreateActiveStorageTables (20190822070920)
|
|
18
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
19
|
+
[1m[35m (33.0ms)[0m [1m[35mCREATE TABLE "active_storage_blobs" ("id" bigserial primary key, "key" character varying NOT NULL, "filename" character varying NOT NULL, "content_type" character varying, "metadata" text, "byte_size" bigint NOT NULL, "checksum" character varying NOT NULL, "created_at" timestamp NOT NULL)[0m
|
|
20
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")[0m
|
|
21
|
+
[1m[35m (5.5ms)[0m [1m[35mCREATE TABLE "active_storage_attachments" ("id" bigserial primary key, "name" character varying NOT NULL, "record_type" character varying NOT NULL, "record_id" bigint NOT NULL, "blob_id" bigint NOT NULL, "created_at" timestamp NOT NULL, CONSTRAINT "fk_rails_c3b3935057"
|
|
22
|
+
FOREIGN KEY ("blob_id")
|
|
23
|
+
REFERENCES "active_storage_blobs" ("id")
|
|
24
|
+
)[0m
|
|
25
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")[0m
|
|
26
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")[0m
|
|
27
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070920"]]
|
|
28
|
+
[1m[35m (0.6ms)[0m [1m[35mCOMMIT[0m
|
|
29
|
+
Migrating to SolidusOneFour (20190822070921)
|
|
30
|
+
[1m[35m (0.4ms)[0m [1m[35mBEGIN[0m
|
|
31
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_users"[0m
|
|
32
|
+
[1m[35m (4.0ms)[0m [1m[35mCREATE TABLE "spree_users" ("id" serial NOT NULL PRIMARY KEY, "crypted_password" character varying(128), "salt" character varying(128), "email" character varying, "remember_token" character varying, "remember_token_expires_at" character varying, "persistence_token" character varying, "single_access_token" character varying, "perishable_token" character varying, "login_count" integer DEFAULT 0 NOT NULL, "failed_login_count" integer DEFAULT 0 NOT NULL, "last_request_at" timestamp, "current_login_at" timestamp, "last_login_at" timestamp, "current_login_ip" character varying, "last_login_ip" character varying, "login" character varying, "ship_address_id" integer, "bill_address_id" integer, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL, "openid_identifier" character varying)[0m
|
|
33
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "friendly_id_slugs" CASCADE[0m
|
|
34
|
+
[1m[35m (2.3ms)[0m [1m[35mCREATE TABLE "friendly_id_slugs" ("id" serial NOT NULL PRIMARY KEY, "slug" character varying NOT NULL, "sluggable_id" integer NOT NULL, "sluggable_type" character varying(50), "scope" character varying, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
35
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE UNIQUE INDEX "index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope" ON "friendly_id_slugs" ("slug", "sluggable_type", "scope")[0m
|
|
36
|
+
[1m[35m (0.6ms)[0m [1m[35mCREATE INDEX "index_friendly_id_slugs_on_slug_and_sluggable_type" ON "friendly_id_slugs" ("slug", "sluggable_type")[0m
|
|
37
|
+
[1m[35m (0.6ms)[0m [1m[35mCREATE INDEX "index_friendly_id_slugs_on_sluggable_id" ON "friendly_id_slugs" ("sluggable_id")[0m
|
|
38
|
+
[1m[35m (0.6ms)[0m [1m[35mCREATE INDEX "index_friendly_id_slugs_on_sluggable_type" ON "friendly_id_slugs" ("sluggable_type")[0m
|
|
39
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_addresses" CASCADE[0m
|
|
40
|
+
[1m[35m (2.1ms)[0m [1m[35mCREATE TABLE "spree_addresses" ("id" serial NOT NULL PRIMARY KEY, "firstname" character varying, "lastname" character varying, "address1" character varying, "address2" character varying, "city" character varying, "zipcode" character varying, "phone" character varying, "state_name" character varying, "alternative_phone" character varying, "company" character varying, "state_id" integer, "country_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
41
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_addresses_on_country_id" ON "spree_addresses" ("country_id")[0m
|
|
42
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_addresses_on_firstname" ON "spree_addresses" ("firstname")[0m
|
|
43
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_addresses_on_lastname" ON "spree_addresses" ("lastname")[0m
|
|
44
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_addresses_on_state_id" ON "spree_addresses" ("state_id")[0m
|
|
45
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_adjustment_reasons" CASCADE[0m
|
|
46
|
+
[1m[35m (2.6ms)[0m [1m[35mCREATE TABLE "spree_adjustment_reasons" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "code" character varying, "active" boolean DEFAULT TRUE, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
47
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_adjustment_reasons_on_active" ON "spree_adjustment_reasons" ("active")[0m
|
|
48
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_spree_adjustment_reasons_on_code" ON "spree_adjustment_reasons" ("code")[0m
|
|
49
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_adjustments" CASCADE[0m
|
|
50
|
+
[1m[35m (83.9ms)[0m [1m[35mCREATE TABLE "spree_adjustments" ("id" serial NOT NULL PRIMARY KEY, "source_type" character varying, "source_id" integer, "adjustable_type" character varying, "adjustable_id" integer NOT NULL, "amount" decimal(10,2), "label" character varying, "eligible" boolean DEFAULT TRUE, "created_at" timestamp(6), "updated_at" timestamp(6), "order_id" integer NOT NULL, "included" boolean DEFAULT FALSE, "promotion_code_id" integer, "adjustment_reason_id" integer, "finalized" boolean DEFAULT FALSE NOT NULL)[0m
|
|
51
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE INDEX "index_spree_adjustments_on_adjustable_id_and_adjustable_type" ON "spree_adjustments" ("adjustable_id", "adjustable_type")[0m
|
|
52
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE INDEX "index_adjustments_on_order_id" ON "spree_adjustments" ("adjustable_id")[0m
|
|
53
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_adjustments_on_eligible" ON "spree_adjustments" ("eligible")[0m
|
|
54
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_adjustments_on_order_id" ON "spree_adjustments" ("order_id")[0m
|
|
55
|
+
[1m[35m (0.6ms)[0m [1m[35mCREATE INDEX "index_spree_adjustments_on_promotion_code_id" ON "spree_adjustments" ("promotion_code_id")[0m
|
|
56
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_adjustments_on_source_id_and_source_type" ON "spree_adjustments" ("source_id", "source_type")[0m
|
|
57
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_assets" CASCADE[0m
|
|
58
|
+
[1m[35m (2.4ms)[0m [1m[35mCREATE TABLE "spree_assets" ("id" serial NOT NULL PRIMARY KEY, "viewable_type" character varying, "viewable_id" integer, "attachment_width" integer, "attachment_height" integer, "attachment_file_size" integer, "position" integer, "attachment_content_type" character varying, "attachment_file_name" character varying, "type" character varying(75), "attachment_updated_at" timestamp, "alt" text, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
59
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_assets_on_viewable_id" ON "spree_assets" ("viewable_id")[0m
|
|
60
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_assets_on_viewable_type_and_type" ON "spree_assets" ("viewable_type", "type")[0m
|
|
61
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_calculators" CASCADE[0m
|
|
62
|
+
[1m[35m (2.5ms)[0m [1m[35mCREATE TABLE "spree_calculators" ("id" serial NOT NULL PRIMARY KEY, "type" character varying, "calculable_type" character varying, "calculable_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6), "preferences" text)[0m
|
|
63
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_calculators_on_calculable_id_and_calculable_type" ON "spree_calculators" ("calculable_id", "calculable_type")[0m
|
|
64
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_calculators_on_id_and_type" ON "spree_calculators" ("id", "type")[0m
|
|
65
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_cartons" CASCADE[0m
|
|
66
|
+
[1m[35m (2.4ms)[0m [1m[35mCREATE TABLE "spree_cartons" ("id" serial NOT NULL PRIMARY KEY, "number" character varying, "external_number" character varying, "stock_location_id" integer, "address_id" integer, "shipping_method_id" integer, "tracking" character varying, "shipped_at" timestamp, "created_at" timestamp(6), "updated_at" timestamp(6), "imported_from_shipment_id" integer)[0m
|
|
67
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_cartons_on_external_number" ON "spree_cartons" ("external_number")[0m
|
|
68
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE UNIQUE INDEX "index_spree_cartons_on_imported_from_shipment_id" ON "spree_cartons" ("imported_from_shipment_id")[0m
|
|
69
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE UNIQUE INDEX "index_spree_cartons_on_number" ON "spree_cartons" ("number")[0m
|
|
70
|
+
[1m[35m (0.6ms)[0m [1m[35mCREATE INDEX "index_spree_cartons_on_stock_location_id" ON "spree_cartons" ("stock_location_id")[0m
|
|
71
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_countries" CASCADE[0m
|
|
72
|
+
[1m[35m (2.3ms)[0m [1m[35mCREATE TABLE "spree_countries" ("id" serial NOT NULL PRIMARY KEY, "iso_name" character varying, "iso" character varying, "iso3" character varying, "name" character varying, "numcode" integer, "states_required" boolean DEFAULT FALSE, "updated_at" timestamp(6), "created_at" timestamp(6))[0m
|
|
73
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_countries_on_iso" ON "spree_countries" ("iso")[0m
|
|
74
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_credit_cards" CASCADE[0m
|
|
75
|
+
[1m[35m (3.1ms)[0m [1m[35mCREATE TABLE "spree_credit_cards" ("id" serial NOT NULL PRIMARY KEY, "month" character varying, "year" character varying, "cc_type" character varying, "last_digits" character varying, "gateway_customer_profile_id" character varying, "gateway_payment_profile_id" character varying, "created_at" timestamp(6), "updated_at" timestamp(6), "name" character varying, "user_id" integer, "payment_method_id" integer, "default" boolean DEFAULT FALSE NOT NULL, "address_id" integer)[0m
|
|
76
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_credit_cards_on_payment_method_id" ON "spree_credit_cards" ("payment_method_id")[0m
|
|
77
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_credit_cards_on_user_id" ON "spree_credit_cards" ("user_id")[0m
|
|
78
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_customer_returns" CASCADE[0m
|
|
79
|
+
[1m[35m (3.8ms)[0m [1m[35mCREATE TABLE "spree_customer_returns" ("id" serial NOT NULL PRIMARY KEY, "number" character varying, "stock_location_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
80
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_inventory_units" CASCADE[0m
|
|
81
|
+
[1m[35m (2.5ms)[0m [1m[35mCREATE TABLE "spree_inventory_units" ("id" serial NOT NULL PRIMARY KEY, "state" character varying, "variant_id" integer, "order_id" integer, "shipment_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6), "pending" boolean DEFAULT TRUE, "line_item_id" integer, "carton_id" integer)[0m
|
|
82
|
+
[1m[35m (39.4ms)[0m [1m[35mCREATE INDEX "index_spree_inventory_units_on_carton_id" ON "spree_inventory_units" ("carton_id")[0m
|
|
83
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_spree_inventory_units_on_line_item_id" ON "spree_inventory_units" ("line_item_id")[0m
|
|
84
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_inventory_units_on_order_id" ON "spree_inventory_units" ("order_id")[0m
|
|
85
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_inventory_units_on_shipment_id" ON "spree_inventory_units" ("shipment_id")[0m
|
|
86
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_inventory_units_on_variant_id" ON "spree_inventory_units" ("variant_id")[0m
|
|
87
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_line_item_actions" CASCADE[0m
|
|
88
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE TABLE "spree_line_item_actions" ("id" serial NOT NULL PRIMARY KEY, "line_item_id" integer NOT NULL, "action_id" integer NOT NULL, "quantity" integer DEFAULT 0, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
89
|
+
[1m[35m (41.3ms)[0m [1m[35mCREATE INDEX "index_spree_line_item_actions_on_action_id" ON "spree_line_item_actions" ("action_id")[0m
|
|
90
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE INDEX "index_spree_line_item_actions_on_line_item_id" ON "spree_line_item_actions" ("line_item_id")[0m
|
|
91
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_line_items" CASCADE[0m
|
|
92
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE TABLE "spree_line_items" ("id" serial NOT NULL PRIMARY KEY, "variant_id" integer, "order_id" integer, "quantity" integer NOT NULL, "price" decimal(10,2) NOT NULL, "created_at" timestamp(6), "updated_at" timestamp(6), "currency" character varying, "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)[0m
|
|
93
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_line_items_on_order_id" ON "spree_line_items" ("order_id")[0m
|
|
94
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_line_items_on_variant_id" ON "spree_line_items" ("variant_id")[0m
|
|
95
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_log_entries" CASCADE[0m
|
|
96
|
+
[1m[35m (2.5ms)[0m [1m[35mCREATE TABLE "spree_log_entries" ("id" serial NOT NULL PRIMARY KEY, "source_type" character varying, "source_id" integer, "details" text, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
97
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_spree_log_entries_on_source_id_and_source_type" ON "spree_log_entries" ("source_id", "source_type")[0m
|
|
98
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_option_type_prototypes" CASCADE[0m
|
|
99
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE TABLE "spree_option_type_prototypes" ("id" serial NOT NULL PRIMARY KEY, "prototype_id" integer, "option_type_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
100
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_option_types" CASCADE[0m
|
|
101
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE TABLE "spree_option_types" ("id" serial NOT NULL PRIMARY KEY, "name" character varying(100), "presentation" character varying(100), "position" integer DEFAULT 0 NOT NULL, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
102
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_option_types_on_position" ON "spree_option_types" ("position")[0m
|
|
103
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_option_values" CASCADE[0m
|
|
104
|
+
[1m[35m (2.4ms)[0m [1m[35mCREATE TABLE "spree_option_values" ("id" serial NOT NULL PRIMARY KEY, "position" integer, "name" character varying, "presentation" character varying, "option_type_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
105
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_option_values_on_option_type_id" ON "spree_option_values" ("option_type_id")[0m
|
|
106
|
+
[1m[35m (1.6ms)[0m [1m[35mCREATE INDEX "index_spree_option_values_on_position" ON "spree_option_values" ("position")[0m
|
|
107
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_option_values_variants" CASCADE[0m
|
|
108
|
+
[1m[35m (2.1ms)[0m [1m[35mCREATE TABLE "spree_option_values_variants" ("id" serial NOT NULL PRIMARY KEY, "variant_id" integer, "option_value_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
109
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_option_values_variants_on_variant_id_and_option_value_id" ON "spree_option_values_variants" ("variant_id", "option_value_id")[0m
|
|
110
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_option_values_variants_on_variant_id" ON "spree_option_values_variants" ("variant_id")[0m
|
|
111
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_order_mutexes" CASCADE[0m
|
|
112
|
+
[1m[35m (1.4ms)[0m [1m[35mCREATE TABLE "spree_order_mutexes" ("id" serial NOT NULL PRIMARY KEY, "order_id" integer NOT NULL, "created_at" timestamp(6))[0m
|
|
113
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE UNIQUE INDEX "index_spree_order_mutexes_on_order_id" ON "spree_order_mutexes" ("order_id")[0m
|
|
114
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_orders" CASCADE[0m
|
|
115
|
+
[1m[35m (3.5ms)[0m [1m[35mCREATE TABLE "spree_orders" ("id" serial NOT NULL PRIMARY KEY, "number" character varying(32), "item_total" decimal(10,2) DEFAULT '0.0' NOT NULL, "total" decimal(10,2) DEFAULT '0.0' NOT NULL, "state" character varying, "adjustment_total" decimal(10,2) DEFAULT '0.0' NOT NULL, "user_id" integer, "completed_at" timestamp, "bill_address_id" integer, "ship_address_id" integer, "payment_total" decimal(10,2) DEFAULT '0.0', "shipment_state" character varying, "payment_state" character varying, "email" character varying, "special_instructions" text, "created_at" timestamp(6), "updated_at" timestamp(6), "currency" character varying, "last_ip_address" character varying, "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" character varying DEFAULT 'spree', "included_tax_total" decimal(10,2) DEFAULT '0.0' NOT NULL, "item_count" integer DEFAULT 0, "approver_id" integer, "approved_at" timestamp, "confirmation_delivered" boolean DEFAULT FALSE, "guest_token" character varying, "canceled_at" timestamp, "canceler_id" integer, "store_id" integer, "approver_name" character varying, "frontend_viewable" boolean DEFAULT TRUE NOT NULL)[0m
|
|
116
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_spree_orders_on_approver_id" ON "spree_orders" ("approver_id")[0m
|
|
117
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_orders_on_bill_address_id" ON "spree_orders" ("bill_address_id")[0m
|
|
118
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_orders_on_completed_at" ON "spree_orders" ("completed_at")[0m
|
|
119
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_orders_on_created_by_id" ON "spree_orders" ("created_by_id")[0m
|
|
120
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_orders_on_guest_token" ON "spree_orders" ("guest_token")[0m
|
|
121
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_orders_on_number" ON "spree_orders" ("number")[0m
|
|
122
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_orders_on_ship_address_id" ON "spree_orders" ("ship_address_id")[0m
|
|
123
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_orders_on_user_id_and_created_by_id" ON "spree_orders" ("user_id", "created_by_id")[0m
|
|
124
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_orders_on_user_id" ON "spree_orders" ("user_id")[0m
|
|
125
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_orders_promotions" CASCADE[0m
|
|
126
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE TABLE "spree_orders_promotions" ("id" serial NOT NULL PRIMARY KEY, "order_id" integer, "promotion_id" integer, "promotion_code_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
127
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_orders_promotions_on_order_id_and_promotion_id" ON "spree_orders_promotions" ("order_id", "promotion_id")[0m
|
|
128
|
+
[1m[35m (0.6ms)[0m [1m[35mCREATE INDEX "index_spree_orders_promotions_on_promotion_code_id" ON "spree_orders_promotions" ("promotion_code_id")[0m
|
|
129
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_payment_capture_events" CASCADE[0m
|
|
130
|
+
[1m[35m (1.5ms)[0m [1m[35mCREATE TABLE "spree_payment_capture_events" ("id" serial NOT NULL PRIMARY KEY, "amount" decimal(10,2) DEFAULT '0.0', "payment_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
131
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_payment_capture_events_on_payment_id" ON "spree_payment_capture_events" ("payment_id")[0m
|
|
132
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_payment_methods" CASCADE[0m
|
|
133
|
+
[1m[35m (2.5ms)[0m [1m[35mCREATE TABLE "spree_payment_methods" ("id" serial NOT NULL PRIMARY KEY, "type" character varying, "name" character varying, "description" text, "active" boolean DEFAULT TRUE, "deleted_at" timestamp, "created_at" timestamp(6), "updated_at" timestamp(6), "display_on" character varying, "auto_capture" boolean, "preferences" text, "preference_source" character varying, "position" integer DEFAULT 0)[0m
|
|
134
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_payment_methods_on_id_and_type" ON "spree_payment_methods" ("id", "type")[0m
|
|
135
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_payments" CASCADE[0m
|
|
136
|
+
[1m[35m (2.4ms)[0m [1m[35mCREATE TABLE "spree_payments" ("id" serial NOT NULL PRIMARY KEY, "amount" decimal(10,2) DEFAULT '0.0' NOT NULL, "order_id" integer, "source_type" character varying, "source_id" integer, "payment_method_id" integer, "state" character varying, "response_code" character varying, "avs_response" character varying, "created_at" timestamp(6), "updated_at" timestamp(6), "number" character varying, "cvv_response_code" character varying, "cvv_response_message" character varying)[0m
|
|
137
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_payments_on_order_id" ON "spree_payments" ("order_id")[0m
|
|
138
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_payments_on_payment_method_id" ON "spree_payments" ("payment_method_id")[0m
|
|
139
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_spree_payments_on_source_id_and_source_type" ON "spree_payments" ("source_id", "source_type")[0m
|
|
140
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_preferences" CASCADE[0m
|
|
141
|
+
[1m[35m (83.2ms)[0m [1m[35mCREATE TABLE "spree_preferences" ("id" serial NOT NULL PRIMARY KEY, "value" text, "key" character varying, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
142
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE UNIQUE INDEX "index_spree_preferences_on_key" ON "spree_preferences" ("key")[0m
|
|
143
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_prices" CASCADE[0m
|
|
144
|
+
[1m[35m (3.9ms)[0m [1m[35mCREATE TABLE "spree_prices" ("id" serial NOT NULL PRIMARY KEY, "variant_id" integer NOT NULL, "amount" decimal(10,2), "currency" character varying, "deleted_at" timestamp, "is_default" boolean DEFAULT TRUE NOT NULL, "created_at" timestamp(6), "updated_at" timestamp(6), "country_iso" character varying(2))[0m
|
|
145
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE INDEX "index_spree_prices_on_country_iso" ON "spree_prices" ("country_iso")[0m
|
|
146
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE INDEX "index_spree_prices_on_variant_id_and_currency" ON "spree_prices" ("variant_id", "currency")[0m
|
|
147
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_product_option_types" CASCADE[0m
|
|
148
|
+
[1m[35m (2.2ms)[0m [1m[35mCREATE TABLE "spree_product_option_types" ("id" serial NOT NULL PRIMARY KEY, "position" integer, "product_id" integer, "option_type_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
149
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_product_option_types_on_option_type_id" ON "spree_product_option_types" ("option_type_id")[0m
|
|
150
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_product_option_types_on_position" ON "spree_product_option_types" ("position")[0m
|
|
151
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_product_option_types_on_product_id" ON "spree_product_option_types" ("product_id")[0m
|
|
152
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_product_promotion_rules" CASCADE[0m
|
|
153
|
+
[1m[35m (2.0ms)[0m [1m[35mCREATE TABLE "spree_product_promotion_rules" ("id" serial NOT NULL PRIMARY KEY, "product_id" integer, "promotion_rule_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
154
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_products_promotion_rules_on_product_id" ON "spree_product_promotion_rules" ("product_id")[0m
|
|
155
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_products_promotion_rules_on_promotion_rule_id" ON "spree_product_promotion_rules" ("promotion_rule_id")[0m
|
|
156
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_product_properties" CASCADE[0m
|
|
157
|
+
[1m[35m (3.4ms)[0m [1m[35mCREATE TABLE "spree_product_properties" ("id" serial NOT NULL PRIMARY KEY, "value" character varying, "product_id" integer, "property_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6), "position" integer DEFAULT 0)[0m
|
|
158
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_product_properties_on_position" ON "spree_product_properties" ("position")[0m
|
|
159
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_product_properties_on_product_id" ON "spree_product_properties" ("product_id")[0m
|
|
160
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_product_properties_on_property_id" ON "spree_product_properties" ("property_id")[0m
|
|
161
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_products" CASCADE[0m
|
|
162
|
+
[1m[35m (3.2ms)[0m [1m[35mCREATE TABLE "spree_products" ("id" serial NOT NULL PRIMARY KEY, "name" character varying DEFAULT '' NOT NULL, "description" text, "available_on" timestamp, "deleted_at" timestamp, "slug" character varying, "meta_description" text, "meta_keywords" character varying, "tax_category_id" integer, "shipping_category_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6), "promotionable" boolean DEFAULT TRUE, "meta_title" character varying)[0m
|
|
163
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_spree_products_on_available_on" ON "spree_products" ("available_on")[0m
|
|
164
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_spree_products_on_deleted_at" ON "spree_products" ("deleted_at")[0m
|
|
165
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE INDEX "index_spree_products_on_name" ON "spree_products" ("name")[0m
|
|
166
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE UNIQUE INDEX "index_spree_products_on_slug" ON "spree_products" ("slug")[0m
|
|
167
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_products_taxons" CASCADE[0m
|
|
168
|
+
[1m[35m (2.1ms)[0m [1m[35mCREATE TABLE "spree_products_taxons" ("id" serial NOT NULL PRIMARY KEY, "product_id" integer, "taxon_id" integer, "position" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
169
|
+
[1m[35m (41.1ms)[0m [1m[35mCREATE INDEX "index_spree_products_taxons_on_position" ON "spree_products_taxons" ("position")[0m
|
|
170
|
+
[1m[35m (40.3ms)[0m [1m[35mCREATE INDEX "index_spree_products_taxons_on_product_id" ON "spree_products_taxons" ("product_id")[0m
|
|
171
|
+
[1m[35m (2.9ms)[0m [1m[35mCREATE INDEX "index_spree_products_taxons_on_taxon_id" ON "spree_products_taxons" ("taxon_id")[0m
|
|
172
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_promotion_action_line_items" CASCADE[0m
|
|
173
|
+
[1m[35m (2.6ms)[0m [1m[35mCREATE TABLE "spree_promotion_action_line_items" ("id" serial NOT NULL PRIMARY KEY, "promotion_action_id" integer, "variant_id" integer, "quantity" integer DEFAULT 1, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
174
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_spree_promotion_action_line_items_on_promotion_action_id" ON "spree_promotion_action_line_items" ("promotion_action_id")[0m
|
|
175
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_promotion_action_line_items_on_variant_id" ON "spree_promotion_action_line_items" ("variant_id")[0m
|
|
176
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_promotion_actions" CASCADE[0m
|
|
177
|
+
[1m[35m (3.4ms)[0m [1m[35mCREATE TABLE "spree_promotion_actions" ("id" serial NOT NULL PRIMARY KEY, "promotion_id" integer, "position" integer, "type" character varying, "deleted_at" timestamp, "preferences" text, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
178
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_promotion_actions_on_deleted_at" ON "spree_promotion_actions" ("deleted_at")[0m
|
|
179
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_spree_promotion_actions_on_id_and_type" ON "spree_promotion_actions" ("id", "type")[0m
|
|
180
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_promotion_actions_on_promotion_id" ON "spree_promotion_actions" ("promotion_id")[0m
|
|
181
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_promotion_categories" CASCADE[0m
|
|
182
|
+
[1m[35m (2.7ms)[0m [1m[35mCREATE TABLE "spree_promotion_categories" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "created_at" timestamp(6), "updated_at" timestamp(6), "code" character varying)[0m
|
|
183
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_promotion_codes" CASCADE[0m
|
|
184
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE TABLE "spree_promotion_codes" ("id" serial NOT NULL PRIMARY KEY, "promotion_id" integer NOT NULL, "value" character varying NOT NULL, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
185
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_promotion_codes_on_promotion_id" ON "spree_promotion_codes" ("promotion_id")[0m
|
|
186
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE UNIQUE INDEX "index_spree_promotion_codes_on_value" ON "spree_promotion_codes" ("value")[0m
|
|
187
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_promotion_rule_taxons" CASCADE[0m
|
|
188
|
+
[1m[35m (1.9ms)[0m [1m[35mCREATE TABLE "spree_promotion_rule_taxons" ("id" serial NOT NULL PRIMARY KEY, "taxon_id" integer, "promotion_rule_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
189
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_spree_promotion_rule_taxons_on_promotion_rule_id" ON "spree_promotion_rule_taxons" ("promotion_rule_id")[0m
|
|
190
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_spree_promotion_rule_taxons_on_taxon_id" ON "spree_promotion_rule_taxons" ("taxon_id")[0m
|
|
191
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_promotion_rules" CASCADE[0m
|
|
192
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE TABLE "spree_promotion_rules" ("id" serial NOT NULL PRIMARY KEY, "promotion_id" integer, "product_group_id" integer, "type" character varying, "created_at" timestamp(6), "updated_at" timestamp(6), "code" character varying, "preferences" text)[0m
|
|
193
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_promotion_rules_on_product_group_id" ON "spree_promotion_rules" ("product_group_id")[0m
|
|
194
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_promotion_rules_on_promotion_id" ON "spree_promotion_rules" ("promotion_id")[0m
|
|
195
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_promotion_rules_users" CASCADE[0m
|
|
196
|
+
[1m[35m (1.9ms)[0m [1m[35mCREATE TABLE "spree_promotion_rules_users" ("id" serial NOT NULL PRIMARY KEY, "user_id" integer, "promotion_rule_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
197
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_promotion_rules_users_on_promotion_rule_id" ON "spree_promotion_rules_users" ("promotion_rule_id")[0m
|
|
198
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_promotion_rules_users_on_user_id" ON "spree_promotion_rules_users" ("user_id")[0m
|
|
199
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_promotions" CASCADE[0m
|
|
200
|
+
[1m[35m (2.6ms)[0m [1m[35mCREATE TABLE "spree_promotions" ("id" serial NOT NULL PRIMARY KEY, "description" character varying, "expires_at" timestamp, "starts_at" timestamp, "name" character varying, "type" character varying, "usage_limit" integer, "match_policy" character varying DEFAULT 'all', "code" character varying, "advertise" boolean DEFAULT FALSE, "path" character varying, "created_at" timestamp(6), "updated_at" timestamp(6), "promotion_category_id" integer, "per_code_usage_limit" integer, "apply_automatically" boolean DEFAULT FALSE)[0m
|
|
201
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_promotions_on_advertise" ON "spree_promotions" ("advertise")[0m
|
|
202
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_promotions_on_apply_automatically" ON "spree_promotions" ("apply_automatically")[0m
|
|
203
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_promotions_on_code" ON "spree_promotions" ("code")[0m
|
|
204
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_promotions_on_expires_at" ON "spree_promotions" ("expires_at")[0m
|
|
205
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_spree_promotions_on_id_and_type" ON "spree_promotions" ("id", "type")[0m
|
|
206
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_spree_promotions_on_promotion_category_id" ON "spree_promotions" ("promotion_category_id")[0m
|
|
207
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_promotions_on_starts_at" ON "spree_promotions" ("starts_at")[0m
|
|
208
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_properties" CASCADE[0m
|
|
209
|
+
[1m[35m (2.7ms)[0m [1m[35mCREATE TABLE "spree_properties" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "presentation" character varying NOT NULL, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
210
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_property_prototypes" CASCADE[0m
|
|
211
|
+
[1m[35m (1.9ms)[0m [1m[35mCREATE TABLE "spree_property_prototypes" ("id" serial NOT NULL PRIMARY KEY, "prototype_id" integer, "property_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
212
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_prototype_taxons" CASCADE[0m
|
|
213
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE TABLE "spree_prototype_taxons" ("id" serial NOT NULL PRIMARY KEY, "taxon_id" integer, "prototype_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
214
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_spree_prototype_taxons_on_prototype_id" ON "spree_prototype_taxons" ("prototype_id")[0m
|
|
215
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_spree_prototype_taxons_on_taxon_id" ON "spree_prototype_taxons" ("taxon_id")[0m
|
|
216
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_prototypes" CASCADE[0m
|
|
217
|
+
[1m[35m (3.5ms)[0m [1m[35mCREATE TABLE "spree_prototypes" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
218
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_refund_reasons" CASCADE[0m
|
|
219
|
+
[1m[35m (43.7ms)[0m [1m[35mCREATE TABLE "spree_refund_reasons" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "active" boolean DEFAULT TRUE, "mutable" boolean DEFAULT TRUE, "created_at" timestamp(6), "updated_at" timestamp(6), "code" character varying)[0m
|
|
220
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_refunds" CASCADE[0m
|
|
221
|
+
[1m[35m (44.4ms)[0m [1m[35mCREATE TABLE "spree_refunds" ("id" serial NOT NULL PRIMARY KEY, "payment_id" integer, "amount" decimal(10,2) DEFAULT '0.0' NOT NULL, "transaction_id" character varying, "created_at" timestamp(6), "updated_at" timestamp(6), "refund_reason_id" integer, "reimbursement_id" integer)[0m
|
|
222
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_refunds_on_payment_id" ON "spree_refunds" ("payment_id")[0m
|
|
223
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_refunds_on_refund_reason_id" ON "spree_refunds" ("refund_reason_id")[0m
|
|
224
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_spree_refunds_on_reimbursement_id" ON "spree_refunds" ("reimbursement_id")[0m
|
|
225
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_reimbursement_credits" CASCADE[0m
|
|
226
|
+
[1m[35m (3.8ms)[0m [1m[35mCREATE TABLE "spree_reimbursement_credits" ("id" serial NOT NULL PRIMARY KEY, "amount" decimal(10,2) DEFAULT '0.0' NOT NULL, "reimbursement_id" integer, "creditable_id" integer, "creditable_type" character varying, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
227
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_reimbursement_types" CASCADE[0m
|
|
228
|
+
[1m[35m (3.6ms)[0m [1m[35mCREATE TABLE "spree_reimbursement_types" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "active" boolean DEFAULT TRUE, "mutable" boolean DEFAULT TRUE, "created_at" timestamp(6), "updated_at" timestamp(6), "type" character varying)[0m
|
|
229
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_spree_reimbursement_types_on_type" ON "spree_reimbursement_types" ("type")[0m
|
|
230
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_reimbursements" CASCADE[0m
|
|
231
|
+
[1m[35m (3.2ms)[0m [1m[35mCREATE TABLE "spree_reimbursements" ("id" serial NOT NULL PRIMARY KEY, "number" character varying, "reimbursement_status" character varying, "customer_return_id" integer, "order_id" integer, "total" decimal(10,2), "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
232
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_spree_reimbursements_on_customer_return_id" ON "spree_reimbursements" ("customer_return_id")[0m
|
|
233
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_reimbursements_on_order_id" ON "spree_reimbursements" ("order_id")[0m
|
|
234
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_return_authorizations" CASCADE[0m
|
|
235
|
+
[1m[35m (2.5ms)[0m [1m[35mCREATE TABLE "spree_return_authorizations" ("id" serial NOT NULL PRIMARY KEY, "number" character varying, "state" character varying, "order_id" integer, "memo" text, "created_at" timestamp(6), "updated_at" timestamp(6), "stock_location_id" integer, "return_reason_id" integer)[0m
|
|
236
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE INDEX "index_return_authorizations_on_return_authorization_reason_id" ON "spree_return_authorizations" ("return_reason_id")[0m
|
|
237
|
+
[1m[35m (0.3ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_return_items" CASCADE[0m
|
|
238
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE TABLE "spree_return_items" ("id" serial NOT NULL PRIMARY KEY, "return_authorization_id" integer, "inventory_unit_id" integer, "exchange_variant_id" integer, "created_at" timestamp(6), "updated_at" timestamp(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" character varying, "acceptance_status" character varying, "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 TRUE NOT NULL, "return_reason_id" integer)[0m
|
|
239
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_return_items_on_customer_return_id" ON "spree_return_items" ("customer_return_id")[0m
|
|
240
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_return_items_on_exchange_inventory_unit_id" ON "spree_return_items" ("exchange_inventory_unit_id")[0m
|
|
241
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_return_reasons" CASCADE[0m
|
|
242
|
+
[1m[35m (2.8ms)[0m [1m[35mCREATE TABLE "spree_return_reasons" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "active" boolean DEFAULT TRUE, "mutable" boolean DEFAULT TRUE, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
243
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_roles" CASCADE[0m
|
|
244
|
+
[1m[35m (2.3ms)[0m [1m[35mCREATE TABLE "spree_roles" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
245
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_roles_users" CASCADE[0m
|
|
246
|
+
[1m[35m (1.5ms)[0m [1m[35mCREATE TABLE "spree_roles_users" ("id" serial NOT NULL PRIMARY KEY, "role_id" integer, "user_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
247
|
+
[1m[35m (0.6ms)[0m [1m[35mCREATE INDEX "index_spree_roles_users_on_role_id" ON "spree_roles_users" ("role_id")[0m
|
|
248
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_roles_users_on_user_id" ON "spree_roles_users" ("user_id")[0m
|
|
249
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_shipments" CASCADE[0m
|
|
250
|
+
[1m[35m (2.8ms)[0m [1m[35mCREATE TABLE "spree_shipments" ("id" serial NOT NULL PRIMARY KEY, "tracking" character varying, "number" character varying, "cost" decimal(10,2) DEFAULT '0.0', "shipped_at" timestamp, "order_id" integer, "deprecated_address_id" integer, "state" character varying, "created_at" timestamp(6), "updated_at" timestamp(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)[0m
|
|
251
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_shipments_on_deprecated_address_id" ON "spree_shipments" ("deprecated_address_id")[0m
|
|
252
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_shipments_on_number" ON "spree_shipments" ("number")[0m
|
|
253
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_shipments_on_order_id" ON "spree_shipments" ("order_id")[0m
|
|
254
|
+
[1m[35m (0.6ms)[0m [1m[35mCREATE INDEX "index_spree_shipments_on_stock_location_id" ON "spree_shipments" ("stock_location_id")[0m
|
|
255
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_shipping_categories" CASCADE[0m
|
|
256
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE TABLE "spree_shipping_categories" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
257
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_shipping_method_categories" CASCADE[0m
|
|
258
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE TABLE "spree_shipping_method_categories" ("id" serial NOT NULL PRIMARY KEY, "shipping_method_id" integer NOT NULL, "shipping_category_id" integer NOT NULL, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
259
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE UNIQUE INDEX "unique_spree_shipping_method_categories" ON "spree_shipping_method_categories" ("shipping_category_id", "shipping_method_id")[0m
|
|
260
|
+
[1m[35m (82.3ms)[0m [1m[35mCREATE INDEX "index_spree_shipping_method_categories_on_shipping_method_id" ON "spree_shipping_method_categories" ("shipping_method_id")[0m
|
|
261
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_shipping_method_stock_locations" CASCADE[0m
|
|
262
|
+
[1m[35m (4.8ms)[0m [1m[35mCREATE TABLE "spree_shipping_method_stock_locations" ("id" serial NOT NULL PRIMARY KEY, "shipping_method_id" integer, "stock_location_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
263
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE INDEX "shipping_method_id_spree_sm_sl" ON "spree_shipping_method_stock_locations" ("shipping_method_id")[0m
|
|
264
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE INDEX "sstock_location_id_spree_sm_sl" ON "spree_shipping_method_stock_locations" ("stock_location_id")[0m
|
|
265
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_shipping_method_zones" CASCADE[0m
|
|
266
|
+
[1m[35m (1.9ms)[0m [1m[35mCREATE TABLE "spree_shipping_method_zones" ("id" serial NOT NULL PRIMARY KEY, "shipping_method_id" integer, "zone_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
267
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_shipping_methods" CASCADE[0m
|
|
268
|
+
[1m[35m (2.9ms)[0m [1m[35mCREATE TABLE "spree_shipping_methods" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "display_on" character varying, "deleted_at" timestamp, "created_at" timestamp(6), "updated_at" timestamp(6), "tracking_url" character varying, "admin_name" character varying, "tax_category_id" integer, "code" character varying, "available_to_all" boolean DEFAULT TRUE, "carrier" character varying, "service_level" character varying)[0m
|
|
269
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_shipping_methods_on_tax_category_id" ON "spree_shipping_methods" ("tax_category_id")[0m
|
|
270
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_shipping_rate_taxes" CASCADE[0m
|
|
271
|
+
[1m[35m (2.3ms)[0m [1m[35mCREATE TABLE "spree_shipping_rate_taxes" ("id" serial NOT NULL PRIMARY KEY, "amount" decimal(8,2) DEFAULT '0.0' NOT NULL, "tax_rate_id" integer, "shipping_rate_id" integer, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)[0m
|
|
272
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_shipping_rate_taxes_on_shipping_rate_id" ON "spree_shipping_rate_taxes" ("shipping_rate_id")[0m
|
|
273
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_shipping_rate_taxes_on_tax_rate_id" ON "spree_shipping_rate_taxes" ("tax_rate_id")[0m
|
|
274
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_shipping_rates" CASCADE[0m
|
|
275
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE TABLE "spree_shipping_rates" ("id" serial NOT NULL PRIMARY KEY, "shipment_id" integer, "shipping_method_id" integer, "selected" boolean DEFAULT FALSE, "cost" decimal(8,2) DEFAULT '0.0', "created_at" timestamp(6), "updated_at" timestamp(6), "tax_rate_id" integer)[0m
|
|
276
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE UNIQUE INDEX "spree_shipping_rates_join_index" ON "spree_shipping_rates" ("shipment_id", "shipping_method_id")[0m
|
|
277
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_state_changes" CASCADE[0m
|
|
278
|
+
[1m[35m (3.2ms)[0m [1m[35mCREATE TABLE "spree_state_changes" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "previous_state" character varying, "stateful_id" integer, "user_id" integer, "stateful_type" character varying, "next_state" character varying, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
279
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_spree_state_changes_on_stateful_id_and_stateful_type" ON "spree_state_changes" ("stateful_id", "stateful_type")[0m
|
|
280
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_spree_state_changes_on_user_id" ON "spree_state_changes" ("user_id")[0m
|
|
281
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_states" CASCADE[0m
|
|
282
|
+
[1m[35m (3.3ms)[0m [1m[35mCREATE TABLE "spree_states" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "abbr" character varying, "country_id" integer, "updated_at" timestamp(6), "created_at" timestamp(6))[0m
|
|
283
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_states_on_country_id" ON "spree_states" ("country_id")[0m
|
|
284
|
+
[1m[35m (0.2ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_stock_items" CASCADE[0m
|
|
285
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE TABLE "spree_stock_items" ("id" serial NOT NULL PRIMARY KEY, "stock_location_id" integer, "variant_id" integer, "count_on_hand" integer DEFAULT 0 NOT NULL, "created_at" timestamp(6), "updated_at" timestamp(6), "backorderable" boolean DEFAULT FALSE, "deleted_at" timestamp)[0m
|
|
286
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_stock_items_on_deleted_at" ON "spree_stock_items" ("deleted_at")[0m
|
|
287
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "stock_item_by_loc_and_var_id" ON "spree_stock_items" ("stock_location_id", "variant_id")[0m
|
|
288
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_stock_items_on_stock_location_id" ON "spree_stock_items" ("stock_location_id")[0m
|
|
289
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE 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[0m
|
|
290
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_stock_locations" CASCADE[0m
|
|
291
|
+
[1m[35m (3.1ms)[0m [1m[35mCREATE TABLE "spree_stock_locations" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "created_at" timestamp(6), "updated_at" timestamp(6), "default" boolean DEFAULT FALSE NOT NULL, "address1" character varying, "address2" character varying, "city" character varying, "state_id" integer, "state_name" character varying, "country_id" integer, "zipcode" character varying, "phone" character varying, "active" boolean DEFAULT TRUE, "backorderable_default" boolean DEFAULT FALSE, "propagate_all_variants" boolean DEFAULT TRUE, "admin_name" character varying, "position" integer DEFAULT 0, "restock_inventory" boolean DEFAULT TRUE NOT NULL, "fulfillable" boolean DEFAULT TRUE NOT NULL, "code" character varying, "check_stock_on_transfer" boolean DEFAULT TRUE)[0m
|
|
292
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_stock_locations_on_country_id" ON "spree_stock_locations" ("country_id")[0m
|
|
293
|
+
[1m[35m (0.6ms)[0m [1m[35mCREATE INDEX "index_spree_stock_locations_on_state_id" ON "spree_stock_locations" ("state_id")[0m
|
|
294
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_stock_movements" CASCADE[0m
|
|
295
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE TABLE "spree_stock_movements" ("id" serial NOT NULL PRIMARY KEY, "stock_item_id" integer, "quantity" integer DEFAULT 0, "action" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL, "originator_type" character varying, "originator_id" integer)[0m
|
|
296
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_stock_movements_on_stock_item_id" ON "spree_stock_movements" ("stock_item_id")[0m
|
|
297
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_store_credit_categories" CASCADE[0m
|
|
298
|
+
[1m[35m (2.4ms)[0m [1m[35mCREATE TABLE "spree_store_credit_categories" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
299
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_store_credit_events" CASCADE[0m
|
|
300
|
+
[1m[35m (3.1ms)[0m [1m[35mCREATE TABLE "spree_store_credit_events" ("id" serial NOT NULL PRIMARY KEY, "store_credit_id" integer NOT NULL, "action" character varying NOT NULL, "amount" decimal(8,2), "user_total_amount" decimal(8,2) DEFAULT '0.0' NOT NULL, "authorization_code" character varying NOT NULL, "deleted_at" timestamp, "originator_type" character varying, "originator_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6), "update_reason_id" integer)[0m
|
|
301
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_store_credit_events_on_deleted_at" ON "spree_store_credit_events" ("deleted_at")[0m
|
|
302
|
+
[1m[35m (40.0ms)[0m [1m[35mCREATE INDEX "index_spree_store_credit_events_on_store_credit_id" ON "spree_store_credit_events" ("store_credit_id")[0m
|
|
303
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_store_credit_types" CASCADE[0m
|
|
304
|
+
[1m[35m (2.3ms)[0m [1m[35mCREATE TABLE "spree_store_credit_types" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "priority" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
305
|
+
[1m[35m (0.6ms)[0m [1m[35mCREATE INDEX "index_spree_store_credit_types_on_priority" ON "spree_store_credit_types" ("priority")[0m
|
|
306
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_store_credit_update_reasons" CASCADE[0m
|
|
307
|
+
[1m[35m (2.5ms)[0m [1m[35mCREATE TABLE "spree_store_credit_update_reasons" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
308
|
+
[1m[35m (0.3ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_store_credits" CASCADE[0m
|
|
309
|
+
[1m[35m (2.8ms)[0m [1m[35mCREATE TABLE "spree_store_credits" ("id" serial NOT NULL PRIMARY KEY, "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" character varying, "memo" text, "spree_store_credits" timestamp, "deleted_at" timestamp, "created_at" timestamp(6), "updated_at" timestamp(6), "type_id" integer, "invalidated_at" timestamp)[0m
|
|
310
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_store_credits_on_deleted_at" ON "spree_store_credits" ("deleted_at")[0m
|
|
311
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_store_credits_on_type_id" ON "spree_store_credits" ("type_id")[0m
|
|
312
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_store_credits_on_user_id" ON "spree_store_credits" ("user_id")[0m
|
|
313
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_store_payment_methods" CASCADE[0m
|
|
314
|
+
[1m[35m (1.6ms)[0m [1m[35mCREATE TABLE "spree_store_payment_methods" ("id" serial NOT NULL PRIMARY KEY, "store_id" integer NOT NULL, "payment_method_id" integer NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)[0m
|
|
315
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_spree_store_payment_methods_on_payment_method_id" ON "spree_store_payment_methods" ("payment_method_id")[0m
|
|
316
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_spree_store_payment_methods_on_store_id" ON "spree_store_payment_methods" ("store_id")[0m
|
|
317
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_stores" CASCADE[0m
|
|
318
|
+
[1m[35m (3.3ms)[0m [1m[35mCREATE TABLE "spree_stores" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "url" character varying, "meta_description" text, "meta_keywords" text, "seo_title" character varying, "mail_from_address" character varying, "default_currency" character varying, "code" character varying, "default" boolean DEFAULT FALSE NOT NULL, "created_at" timestamp(6), "updated_at" timestamp(6), "cart_tax_country_iso" character varying)[0m
|
|
319
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_stores_on_code" ON "spree_stores" ("code")[0m
|
|
320
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_stores_on_default" ON "spree_stores" ("default")[0m
|
|
321
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_tax_categories" CASCADE[0m
|
|
322
|
+
[1m[35m (2.5ms)[0m [1m[35mCREATE TABLE "spree_tax_categories" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "description" character varying, "is_default" boolean DEFAULT FALSE, "deleted_at" timestamp, "created_at" timestamp(6), "updated_at" timestamp(6), "tax_code" character varying)[0m
|
|
323
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_tax_rates" CASCADE[0m
|
|
324
|
+
[1m[35m (2.6ms)[0m [1m[35mCREATE TABLE "spree_tax_rates" ("id" serial NOT NULL PRIMARY KEY, "amount" decimal(8,5), "zone_id" integer, "tax_category_id" integer, "included_in_price" boolean DEFAULT FALSE, "created_at" timestamp(6), "updated_at" timestamp(6), "name" character varying, "show_rate_in_label" boolean DEFAULT TRUE, "deleted_at" timestamp)[0m
|
|
325
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_tax_rates_on_deleted_at" ON "spree_tax_rates" ("deleted_at")[0m
|
|
326
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_tax_rates_on_tax_category_id" ON "spree_tax_rates" ("tax_category_id")[0m
|
|
327
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_tax_rates_on_zone_id" ON "spree_tax_rates" ("zone_id")[0m
|
|
328
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_taxonomies" CASCADE[0m
|
|
329
|
+
[1m[35m (2.5ms)[0m [1m[35mCREATE TABLE "spree_taxonomies" ("id" serial NOT NULL PRIMARY KEY, "name" character varying NOT NULL, "created_at" timestamp(6), "updated_at" timestamp(6), "position" integer DEFAULT 0)[0m
|
|
330
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_taxonomies_on_position" ON "spree_taxonomies" ("position")[0m
|
|
331
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_taxons" CASCADE[0m
|
|
332
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE TABLE "spree_taxons" ("id" serial NOT NULL PRIMARY KEY, "parent_id" integer, "position" integer DEFAULT 0, "name" character varying NOT NULL, "permalink" character varying, "taxonomy_id" integer, "lft" integer, "rgt" integer, "icon_file_name" character varying, "icon_content_type" character varying, "icon_file_size" integer, "icon_updated_at" timestamp, "description" text, "created_at" timestamp(6), "updated_at" timestamp(6), "meta_title" character varying, "meta_description" character varying, "meta_keywords" character varying, "depth" integer)[0m
|
|
333
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_taxons_on_parent_id" ON "spree_taxons" ("parent_id")[0m
|
|
334
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_taxons_on_permalink" ON "spree_taxons" ("permalink")[0m
|
|
335
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_taxons_on_position" ON "spree_taxons" ("position")[0m
|
|
336
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_taxons_on_taxonomy_id" ON "spree_taxons" ("taxonomy_id")[0m
|
|
337
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_unit_cancels" CASCADE[0m
|
|
338
|
+
[1m[35m (3.4ms)[0m [1m[35mCREATE TABLE "spree_unit_cancels" ("id" serial NOT NULL PRIMARY KEY, "inventory_unit_id" integer NOT NULL, "reason" character varying, "created_by" character varying, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
339
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_unit_cancels_on_inventory_unit_id" ON "spree_unit_cancels" ("inventory_unit_id")[0m
|
|
340
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_user_addresses" CASCADE[0m
|
|
341
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE TABLE "spree_user_addresses" ("id" serial NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "address_id" integer NOT NULL, "default" boolean DEFAULT FALSE, "archived" boolean DEFAULT FALSE, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)[0m
|
|
342
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_user_addresses_on_address_id" ON "spree_user_addresses" ("address_id")[0m
|
|
343
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE UNIQUE INDEX "index_spree_user_addresses_on_user_id_and_address_id" ON "spree_user_addresses" ("user_id", "address_id")[0m
|
|
344
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_user_addresses_on_user_id" ON "spree_user_addresses" ("user_id")[0m
|
|
345
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_user_stock_locations" CASCADE[0m
|
|
346
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE TABLE "spree_user_stock_locations" ("id" serial NOT NULL PRIMARY KEY, "user_id" integer, "stock_location_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
347
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_user_stock_locations_on_user_id" ON "spree_user_stock_locations" ("user_id")[0m
|
|
348
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_variant_property_rule_conditions" CASCADE[0m
|
|
349
|
+
[1m[35m (1.7ms)[0m [1m[35mCREATE TABLE "spree_variant_property_rule_conditions" ("id" serial NOT NULL PRIMARY KEY, "option_value_id" integer, "variant_property_rule_id" integer, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)[0m
|
|
350
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_variant_prop_rule_conditions_on_rule_and_optval" ON "spree_variant_property_rule_conditions" ("variant_property_rule_id", "option_value_id")[0m
|
|
351
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_variant_property_rule_values" CASCADE[0m
|
|
352
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE TABLE "spree_variant_property_rule_values" ("id" serial NOT NULL PRIMARY KEY, "value" text, "position" integer DEFAULT 0, "property_id" integer, "variant_property_rule_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
353
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_variant_property_rule_values_on_property_id" ON "spree_variant_property_rule_values" ("property_id")[0m
|
|
354
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_variant_property_rule_values_on_rule" ON "spree_variant_property_rule_values" ("variant_property_rule_id")[0m
|
|
355
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_variant_property_rules" CASCADE[0m
|
|
356
|
+
[1m[35m (1.9ms)[0m [1m[35mCREATE TABLE "spree_variant_property_rules" ("id" serial NOT NULL PRIMARY KEY, "product_id" integer, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)[0m
|
|
357
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_variant_property_rules_on_product_id" ON "spree_variant_property_rules" ("product_id")[0m
|
|
358
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_variants" CASCADE[0m
|
|
359
|
+
[1m[35m (2.9ms)[0m [1m[35mCREATE TABLE "spree_variants" ("id" serial NOT NULL PRIMARY KEY, "sku" character varying DEFAULT '' NOT NULL, "weight" decimal(8,2) DEFAULT '0.0', "height" decimal(8,2), "width" decimal(8,2), "depth" decimal(8,2), "deleted_at" timestamp, "is_master" boolean DEFAULT FALSE, "product_id" integer, "cost_price" decimal(10,2), "position" integer, "cost_currency" character varying, "track_inventory" boolean DEFAULT TRUE, "tax_category_id" integer, "updated_at" timestamp(6), "created_at" timestamp(6))[0m
|
|
360
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_variants_on_position" ON "spree_variants" ("position")[0m
|
|
361
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_variants_on_product_id" ON "spree_variants" ("product_id")[0m
|
|
362
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_variants_on_sku" ON "spree_variants" ("sku")[0m
|
|
363
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE INDEX "index_spree_variants_on_tax_category_id" ON "spree_variants" ("tax_category_id")[0m
|
|
364
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_variants_on_track_inventory" ON "spree_variants" ("track_inventory")[0m
|
|
365
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_zone_members" CASCADE[0m
|
|
366
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE TABLE "spree_zone_members" ("id" serial NOT NULL PRIMARY KEY, "zoneable_type" character varying, "zoneable_id" integer, "zone_id" integer, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
367
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_zone_members_on_zone_id" ON "spree_zone_members" ("zone_id")[0m
|
|
368
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_spree_zone_members_on_zoneable_id_and_zoneable_type" ON "spree_zone_members" ("zoneable_id", "zoneable_type")[0m
|
|
369
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "spree_zones" CASCADE[0m
|
|
370
|
+
[1m[35m (3.1ms)[0m [1m[35mCREATE TABLE "spree_zones" ("id" serial NOT NULL PRIMARY KEY, "name" character varying, "description" character varying, "default_tax" boolean DEFAULT FALSE, "zone_members_count" integer DEFAULT 0, "created_at" timestamp(6), "updated_at" timestamp(6))[0m
|
|
371
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070921"]]
|
|
372
|
+
[1m[35m (9.9ms)[0m [1m[35mCOMMIT[0m
|
|
373
|
+
Migrating to CreateSpreeWalletPaymentSources (20190822070922)
|
|
374
|
+
[1m[35m (10.0ms)[0m [1m[35mBEGIN[0m
|
|
375
|
+
[1m[35m (3.9ms)[0m [1m[35mCREATE TABLE "spree_wallet_payment_sources" ("id" serial NOT NULL PRIMARY KEY, "user_id" integer NOT NULL, "payment_source_type" character varying NOT NULL, "payment_source_id" integer NOT NULL, "default" boolean DEFAULT FALSE NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL, CONSTRAINT "fk_rails_5dd6e027c5"
|
|
376
|
+
FOREIGN KEY ("user_id")
|
|
377
|
+
REFERENCES "spree_users" ("id")
|
|
378
|
+
)[0m
|
|
379
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_spree_wallet_payment_sources_on_user_id" ON "spree_wallet_payment_sources" ("user_id")[0m
|
|
380
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE UNIQUE INDEX "index_spree_wallet_payment_sources_on_source_and_user" ON "spree_wallet_payment_sources" ("user_id", "payment_source_id", "payment_source_type")[0m
|
|
381
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070922"]]
|
|
382
|
+
[1m[35m (0.6ms)[0m [1m[35mCOMMIT[0m
|
|
383
|
+
Migrating to MigrateCreditCardsToWalletPaymentSources (20190822070923)
|
|
384
|
+
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
|
|
385
|
+
[1m[36mMigrateCreditCardsToWalletPaymentSources::CreditCard Load (0.4ms)[0m [1m[34mSELECT "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 $1[0m [["LIMIT", 1000]]
|
|
386
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070923"]]
|
|
387
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
|
388
|
+
Migrating to RemoveIsDefaultFromPrices (20190822070924)
|
|
389
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
390
|
+
[1m[35m (0.6ms)[0m [1m[35mALTER TABLE "spree_prices" DROP COLUMN "is_default"[0m
|
|
391
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070924"]]
|
|
392
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
|
393
|
+
Migrating to RemoveCurrencyFromLineItems (20190822070925)
|
|
394
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
395
|
+
[1m[35m (0.3ms)[0m [1m[35mALTER TABLE "spree_line_items" DROP COLUMN "currency"[0m
|
|
396
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070925"]]
|
|
397
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
|
398
|
+
Migrating to AddAvailableToColumnsAndRemoveDisplayOnFromPaymentMethods (20190822070926)
|
|
399
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
400
|
+
[1m[35m (3.8ms)[0m [1m[35mALTER TABLE "spree_payment_methods" ADD "available_to_users" boolean DEFAULT TRUE[0m
|
|
401
|
+
[1m[35m (3.2ms)[0m [1m[35mALTER TABLE "spree_payment_methods" ADD "available_to_admin" boolean DEFAULT TRUE[0m
|
|
402
|
+
[1m[35m (0.5ms)[0m [1m[33mUPDATE spree_payment_methods SET available_to_users=FALSE WHERE NOT (display_on='front_end' OR display_on='' OR display_on IS NULL)[0m
|
|
403
|
+
[1m[35m (0.2ms)[0m [1m[33mUPDATE spree_payment_methods SET available_to_admin=FALSE WHERE NOT (display_on='back_end' OR display_on='' OR display_on IS NULL)[0m
|
|
404
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_payment_methods" DROP COLUMN "display_on"[0m
|
|
405
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070926"]]
|
|
406
|
+
[1m[35m (2.4ms)[0m [1m[35mCOMMIT[0m
|
|
407
|
+
Migrating to CreateSpreePromotionCodeBatch (20190822070927)
|
|
408
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
409
|
+
[1m[35m (2.7ms)[0m [1m[35mCREATE TABLE "spree_promotion_code_batches" ("id" serial NOT NULL PRIMARY KEY, "promotion_id" integer NOT NULL, "base_code" character varying NOT NULL, "number_of_codes" integer NOT NULL, "email" character varying, "error" character varying, "state" character varying DEFAULT 'pending', "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)[0m
|
|
410
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_promotion_code_batches_on_promotion_id" ON "spree_promotion_code_batches" ("promotion_id")[0m
|
|
411
|
+
[1m[35m (3.8ms)[0m [1m[35mALTER TABLE "spree_promotion_code_batches" ADD CONSTRAINT "fk_rails_c217102f50"
|
|
412
|
+
FOREIGN KEY ("promotion_id")
|
|
413
|
+
REFERENCES "spree_promotions" ("id")
|
|
414
|
+
[0m
|
|
415
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_promotion_codes" ADD "promotion_code_batch_id" integer[0m
|
|
416
|
+
[1m[35m (0.9ms)[0m [1m[35mALTER TABLE "spree_promotion_codes" ADD CONSTRAINT "fk_rails_e306e312d9"
|
|
417
|
+
FOREIGN KEY ("promotion_code_batch_id")
|
|
418
|
+
REFERENCES "spree_promotion_code_batches" ("id")
|
|
419
|
+
[0m
|
|
420
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_spree_promotion_codes_on_promotion_code_batch_id" ON "spree_promotion_codes" ("promotion_code_batch_id")[0m
|
|
421
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070927"]]
|
|
422
|
+
[1m[35m (0.6ms)[0m [1m[35mCOMMIT[0m
|
|
423
|
+
Migrating to AddAvailableToUsersAndRemoveDisplayOnFromShippingMethods (20190822070928)
|
|
424
|
+
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
|
|
425
|
+
[1m[35m (3.7ms)[0m [1m[35mALTER TABLE "spree_shipping_methods" ADD "available_to_users" boolean DEFAULT TRUE[0m
|
|
426
|
+
[1m[35m (0.4ms)[0m [1m[33mUPDATE spree_shipping_methods SET available_to_users=FALSE WHERE display_on='back_end'[0m
|
|
427
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_shipping_methods" DROP COLUMN "display_on"[0m
|
|
428
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070928"]]
|
|
429
|
+
[1m[35m (1.2ms)[0m [1m[35mCOMMIT[0m
|
|
430
|
+
Migrating to AddIndexToSpreePaymentsNumber (20190822070929)
|
|
431
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
|
432
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE UNIQUE INDEX "index_spree_payments_on_number" ON "spree_payments" ("number")[0m
|
|
433
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070929"]]
|
|
434
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
|
435
|
+
Migrating to RemoveSpreeStoreCreditsColumn (20190822070930)
|
|
436
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
437
|
+
[1m[35m (0.3ms)[0m [1m[35mALTER TABLE "spree_store_credits" DROP COLUMN "spree_store_credits"[0m
|
|
438
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070930"]]
|
|
439
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
|
440
|
+
Migrating to AddLftAndRgtIndexesToTaxons (20190822070931)
|
|
441
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
442
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_taxons_on_lft" ON "spree_taxons" ("lft")[0m
|
|
443
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_taxons_on_rgt" ON "spree_taxons" ("rgt")[0m
|
|
444
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070931"]]
|
|
445
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
|
446
|
+
Migrating to RemoveOrderIdFromInventoryUnits (20190822070932)
|
|
447
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
448
|
+
[1m[36mRemoveOrderIdFromInventoryUnits::InventoryUnit Exists (1.0ms)[0m [1m[34mSELECT 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 $1[0m [["LIMIT", 1]]
|
|
449
|
+
[1m[35m (0.3ms)[0m [1m[35mALTER TABLE "spree_inventory_units" DROP COLUMN "order_id"[0m
|
|
450
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070932"]]
|
|
451
|
+
[1m[35m (17.9ms)[0m [1m[35mCOMMIT[0m
|
|
452
|
+
Migrating to TransformTaxRateCategoryRelation (20190822070933)
|
|
453
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
|
454
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE TABLE "spree_tax_rate_tax_categories" ("id" serial NOT NULL PRIMARY KEY, "tax_category_id" integer NOT NULL, "tax_rate_id" integer NOT NULL)[0m
|
|
455
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_tax_rate_tax_categories_on_tax_category_id" ON "spree_tax_rate_tax_categories" ("tax_category_id")[0m
|
|
456
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_tax_rate_tax_categories_on_tax_rate_id" ON "spree_tax_rate_tax_categories" ("tax_rate_id")[0m
|
|
457
|
+
[1m[35m (0.9ms)[0m [1m[35mALTER TABLE "spree_tax_rate_tax_categories" ADD CONSTRAINT "fk_rails_499313ce8e"
|
|
458
|
+
FOREIGN KEY ("tax_category_id")
|
|
459
|
+
REFERENCES "spree_tax_categories" ("id")
|
|
460
|
+
[0m
|
|
461
|
+
[1m[35m (0.9ms)[0m [1m[35mALTER TABLE "spree_tax_rate_tax_categories" ADD CONSTRAINT "fk_rails_3e6fe87e12"
|
|
462
|
+
FOREIGN KEY ("tax_rate_id")
|
|
463
|
+
REFERENCES "spree_tax_rates" ("id")
|
|
464
|
+
[0m
|
|
465
|
+
[1m[36mTransformTaxRateCategoryRelation::TaxRate Load (0.2ms)[0m [1m[34mSELECT "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 $1[0m [["LIMIT", 1000]]
|
|
466
|
+
[1m[35m (0.3ms)[0m [1m[35mALTER TABLE "spree_tax_rates" DROP COLUMN "tax_category_id"[0m
|
|
467
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070933"]]
|
|
468
|
+
[1m[35m (0.8ms)[0m [1m[35mCOMMIT[0m
|
|
469
|
+
Migrating to AddRolesUniqueConstraints (20190822070934)
|
|
470
|
+
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
|
|
471
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE UNIQUE INDEX "index_spree_roles_on_name" ON "spree_roles" ("name")[0m
|
|
472
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE UNIQUE INDEX "index_spree_roles_users_on_user_id_and_role_id" ON "spree_roles_users" ("user_id", "role_id")[0m
|
|
473
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070934"]]
|
|
474
|
+
[1m[35m (0.6ms)[0m [1m[35mCOMMIT[0m
|
|
475
|
+
Migrating to AddTimeRangeToTaxRate (20190822070935)
|
|
476
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
|
477
|
+
[1m[35m (0.3ms)[0m [1m[35mALTER TABLE "spree_tax_rates" ADD "starts_at" timestamp[0m
|
|
478
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_tax_rates" ADD "expires_at" timestamp[0m
|
|
479
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070935"]]
|
|
480
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
|
481
|
+
Migrating to RenameBogusGateways (20190822070936)
|
|
482
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
483
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070936"]]
|
|
484
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
|
485
|
+
Migrating to RemoveDefaultTaxFromSpreeZones (20190822070937)
|
|
486
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
487
|
+
[1m[35m (0.3ms)[0m [1m[35mALTER TABLE "spree_zones" DROP COLUMN "default_tax"[0m
|
|
488
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070937"]]
|
|
489
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
|
490
|
+
Migrating to CreatePromotionRuleStores (20190822070938)
|
|
491
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
492
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE TABLE "spree_promotion_rules_stores" ("id" bigserial primary key, "store_id" bigint NOT NULL, "promotion_rule_id" bigint NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
|
493
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE INDEX "index_spree_promotion_rules_stores_on_store_id" ON "spree_promotion_rules_stores" ("store_id")[0m
|
|
494
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_promotion_rules_stores_on_promotion_rule_id" ON "spree_promotion_rules_stores" ("promotion_rule_id")[0m
|
|
495
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070938"]]
|
|
496
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
|
497
|
+
Migrating to CreateStoreShippingMethods (20190822070939)
|
|
498
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
|
499
|
+
[1m[35m (1.6ms)[0m [1m[35mCREATE TABLE "spree_store_shipping_methods" ("id" bigserial primary key, "store_id" bigint NOT NULL, "shipping_method_id" bigint NOT NULL, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)[0m
|
|
500
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_spree_store_shipping_methods_on_store_id" ON "spree_store_shipping_methods" ("store_id")[0m
|
|
501
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_store_shipping_methods_on_shipping_method_id" ON "spree_store_shipping_methods" ("shipping_method_id")[0m
|
|
502
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070939"]]
|
|
503
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
|
504
|
+
Migrating to AddAvailableLocalesToStores (20190822070940)
|
|
505
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
|
506
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_stores" ADD "available_locales" character varying[0m
|
|
507
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070940"]]
|
|
508
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
|
509
|
+
Migrating to AddAmountRemainingToStoreCreditEvents (20190822070941)
|
|
510
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
511
|
+
[1m[35m (4.3ms)[0m [1m[35mALTER TABLE "spree_store_credit_events" ADD "amount_remaining" decimal(8,2) DEFAULT NULL[0m
|
|
512
|
+
[1m[36mAddAmountRemainingToStoreCreditEvents::StoreCredit Load (0.5ms)[0m [1m[34mSELECT "spree_store_credits".* FROM "spree_store_credits" ORDER BY "spree_store_credits"."id" ASC LIMIT $1[0m [["LIMIT", 1000]]
|
|
513
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070941"]]
|
|
514
|
+
[1m[35m (41.7ms)[0m [1m[35mCOMMIT[0m
|
|
515
|
+
Migrating to AddJoinCharactersToPromotionCodeBatch (20190822070942)
|
|
516
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
517
|
+
[1m[35m (5.4ms)[0m [1m[35mALTER TABLE "spree_promotion_code_batches" ADD "join_characters" character varying DEFAULT '_' NOT NULL[0m
|
|
518
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070942"]]
|
|
519
|
+
[1m[35m (1.4ms)[0m [1m[35mCOMMIT[0m
|
|
520
|
+
Migrating to CreateSpreeStoreCreditReasonsTable (20190822070943)
|
|
521
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
|
522
|
+
[1m[35m (2.7ms)[0m [1m[35mCREATE TABLE "spree_store_credit_reasons" ("id" bigserial primary key, "name" character varying, "active" boolean DEFAULT TRUE, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
|
523
|
+
[1m[36mCreateSpreeStoreCreditReasonsTable::StoreCreditUpdateReason Load (0.3ms)[0m [1m[34mSELECT "spree_store_credit_update_reasons".* FROM "spree_store_credit_update_reasons"[0m
|
|
524
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_store_credit_events" ADD "store_credit_reason_id" integer[0m
|
|
525
|
+
[1m[35m (0.4ms)[0m [1m[33mupdate spree_store_credit_events set store_credit_reason_id = update_reason_id[0m
|
|
526
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070943"]]
|
|
527
|
+
[1m[35m (0.7ms)[0m [1m[35mCOMMIT[0m
|
|
528
|
+
Migrating to RemoveCodeFromSpreePromotions (20190822070944)
|
|
529
|
+
[1m[35m (39.6ms)[0m [1m[35mBEGIN[0m
|
|
530
|
+
[1m[36mRemoveCodeFromSpreePromotions::Promotion Exists (0.4ms)[0m [1m[34mSELECT 1 AS one FROM "spree_promotions" WHERE NOT (("spree_promotions"."code" = $1 OR "spree_promotions"."code" IS NULL)) LIMIT $2[0m [["code", ""], ["LIMIT", 1]]
|
|
531
|
+
[1m[35m (0.3ms)[0m [1m[35mDROP INDEX "index_spree_promotions_on_code"[0m
|
|
532
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_promotions" DROP COLUMN "code"[0m
|
|
533
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070944"]]
|
|
534
|
+
[1m[35m (2.3ms)[0m [1m[35mCOMMIT[0m
|
|
535
|
+
Migrating to DropSpreeStoreCreditUpdateReasons (20190822070945)
|
|
536
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
537
|
+
[1m[35m (0.6ms)[0m [1m[35mDROP TABLE "spree_store_credit_update_reasons"[0m
|
|
538
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_store_credit_events" DROP COLUMN "update_reason_id"[0m
|
|
539
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070945"]]
|
|
540
|
+
[1m[35m (1.0ms)[0m [1m[35mCOMMIT[0m
|
|
541
|
+
Migrating to AddApiKeyToSpreeUsers (20190822070946)
|
|
542
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
543
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_users" ADD "api_key" character varying(40)[0m
|
|
544
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070946"]]
|
|
545
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
|
546
|
+
Migrating to ResizeApiKeyField (20190822070947)
|
|
547
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
548
|
+
[1m[35m (0.8ms)[0m [1m[35mALTER TABLE "spree_users" ALTER COLUMN "api_key" TYPE character varying(48)[0m
|
|
549
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070947"]]
|
|
550
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
|
551
|
+
Migrating to RenameApiKeyToSpreeApiKey (20190822070948)
|
|
552
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
553
|
+
[1m[35m (0.7ms)[0m [1m[35mALTER TABLE "spree_users" RENAME COLUMN "api_key" TO "spree_api_key"[0m
|
|
554
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070948"]]
|
|
555
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
|
556
|
+
Migrating to AddIndexToUserSpreeApiKey (20190822070949)
|
|
557
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
558
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_spree_users_on_spree_api_key" ON "spree_users" ("spree_api_key")[0m
|
|
559
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070949"]]
|
|
560
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
|
561
|
+
Migrating to CreateUsers (20190822070950)
|
|
562
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
563
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070950"]]
|
|
564
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
|
565
|
+
Migrating to RenameColumnsForDevise (20190822070951)
|
|
566
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
|
567
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_users" RENAME COLUMN "crypted_password" TO "encrypted_password"[0m
|
|
568
|
+
[1m[35m (0.1ms)[0m [1m[35mALTER TABLE "spree_users" RENAME COLUMN "salt" TO "password_salt"[0m
|
|
569
|
+
[1m[35m (0.1ms)[0m [1m[35mALTER TABLE "spree_users" RENAME COLUMN "remember_token_expires_at" TO "remember_created_at"[0m
|
|
570
|
+
[1m[35m (0.1ms)[0m [1m[35mALTER TABLE "spree_users" RENAME COLUMN "login_count" TO "sign_in_count"[0m
|
|
571
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_users" RENAME COLUMN "failed_login_count" TO "failed_attempts"[0m
|
|
572
|
+
[1m[35m (0.1ms)[0m [1m[35mALTER TABLE "spree_users" RENAME COLUMN "single_access_token" TO "reset_password_token"[0m
|
|
573
|
+
[1m[35m (0.1ms)[0m [1m[35mALTER TABLE "spree_users" RENAME COLUMN "current_login_at" TO "current_sign_in_at"[0m
|
|
574
|
+
[1m[35m (0.3ms)[0m [1m[35mALTER TABLE "spree_users" RENAME COLUMN "last_login_at" TO "last_sign_in_at"[0m
|
|
575
|
+
[1m[35m (0.1ms)[0m [1m[35mALTER TABLE "spree_users" RENAME COLUMN "current_login_ip" TO "current_sign_in_ip"[0m
|
|
576
|
+
[1m[35m (0.1ms)[0m [1m[35mALTER TABLE "spree_users" RENAME COLUMN "last_login_ip" TO "last_sign_in_ip"[0m
|
|
577
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_users" ADD "authentication_token" character varying[0m
|
|
578
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_users" ADD "unlock_token" character varying[0m
|
|
579
|
+
[1m[35m (0.1ms)[0m [1m[35mALTER TABLE "spree_users" ADD "locked_at" timestamp[0m
|
|
580
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_users" DROP COLUMN "openid_identifier"[0m
|
|
581
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070951"]]
|
|
582
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
|
583
|
+
Migrating to ConvertUserRememberField (20190822070952)
|
|
584
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
585
|
+
[1m[35m (0.3ms)[0m [1m[35mALTER TABLE "spree_users" DROP COLUMN "remember_created_at"[0m
|
|
586
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_users" ADD "remember_created_at" timestamp[0m
|
|
587
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070952"]]
|
|
588
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
|
589
|
+
Migrating to AddResetPasswordSentAtToSpreeUsers (20190822070953)
|
|
590
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
591
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_users" ADD "reset_password_sent_at" timestamp[0m
|
|
592
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070953"]]
|
|
593
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
|
594
|
+
Migrating to MakeUsersEmailIndexUnique (20190822070954)
|
|
595
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
596
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE UNIQUE INDEX "email_idx_unique" ON "spree_users" ("email")[0m
|
|
597
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070954"]]
|
|
598
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
|
599
|
+
Migrating to AddDeletedAtToUsers (20190822070955)
|
|
600
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
601
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_users" ADD "deleted_at" timestamp[0m
|
|
602
|
+
[1m[35m (0.8ms)[0m [1m[35mCREATE INDEX "index_spree_users_on_deleted_at" ON "spree_users" ("deleted_at")[0m
|
|
603
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070955"]]
|
|
604
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
|
605
|
+
Migrating to AddConfirmableToUsers (20190822070956)
|
|
606
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
607
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_users" ADD "confirmation_token" character varying[0m
|
|
608
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_users" ADD "confirmed_at" timestamp[0m
|
|
609
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER TABLE "spree_users" ADD "confirmation_sent_at" timestamp[0m
|
|
610
|
+
[1m[36mActiveRecord::SchemaMigration Create (0.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20190822070956"]]
|
|
611
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
|
612
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
|
613
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
614
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "test"], ["created_at", "2019-08-22 07:09:32.795364"], ["updated_at", "2019-08-22 07:09:32.795364"]]
|
|
615
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
|
616
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT pg_advisory_unlock(7932130290496454280)[0m
|
|
617
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
618
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT pg_try_advisory_lock(7932130290496454280)[0m
|
|
619
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
620
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
|
621
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
622
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
623
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT pg_advisory_unlock(7932130290496454280)[0m
|
|
624
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
|
625
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
626
|
+
[1m[35m (4.1ms)[0m [1m[35mALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "ar_internal_metadata" DISABLE TRIGGER ALL;ALTER TABLE "active_storage_blobs" DISABLE TRIGGER ALL;ALTER TABLE "active_storage_attachments" DISABLE TRIGGER ALL;ALTER TABLE "friendly_id_slugs" DISABLE TRIGGER ALL;ALTER TABLE "spree_addresses" DISABLE TRIGGER ALL;ALTER TABLE "spree_users" DISABLE TRIGGER ALL;ALTER TABLE "spree_adjustment_reasons" DISABLE TRIGGER ALL;ALTER TABLE "spree_adjustments" DISABLE TRIGGER ALL;ALTER TABLE "spree_assets" DISABLE TRIGGER ALL;ALTER TABLE "spree_calculators" DISABLE TRIGGER ALL;ALTER TABLE "spree_cartons" DISABLE TRIGGER ALL;ALTER TABLE "spree_countries" DISABLE TRIGGER ALL;ALTER TABLE "spree_credit_cards" DISABLE TRIGGER ALL;ALTER TABLE "spree_customer_returns" DISABLE TRIGGER ALL;ALTER TABLE "spree_inventory_units" DISABLE TRIGGER ALL;ALTER TABLE "spree_line_item_actions" DISABLE TRIGGER ALL;ALTER TABLE "spree_line_items" DISABLE TRIGGER ALL;ALTER TABLE "spree_log_entries" DISABLE TRIGGER ALL;ALTER TABLE "spree_option_type_prototypes" DISABLE TRIGGER ALL;ALTER TABLE "spree_option_types" DISABLE TRIGGER ALL;ALTER TABLE "spree_option_values" DISABLE TRIGGER ALL;ALTER TABLE "spree_option_values_variants" DISABLE TRIGGER ALL;ALTER TABLE "spree_order_mutexes" DISABLE TRIGGER ALL;ALTER TABLE "spree_orders" DISABLE TRIGGER ALL;ALTER TABLE "spree_orders_promotions" DISABLE TRIGGER ALL;ALTER TABLE "spree_payment_capture_events" DISABLE TRIGGER ALL;ALTER TABLE "spree_payments" DISABLE TRIGGER ALL;ALTER TABLE "spree_preferences" DISABLE TRIGGER ALL;ALTER TABLE "spree_prices" DISABLE TRIGGER ALL;ALTER TABLE "spree_product_option_types" DISABLE TRIGGER ALL;ALTER TABLE "spree_product_promotion_rules" DISABLE TRIGGER ALL;ALTER TABLE "spree_product_properties" DISABLE TRIGGER ALL;ALTER TABLE "spree_products" DISABLE TRIGGER ALL;ALTER TABLE "spree_products_taxons" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_action_line_items" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_actions" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_categories" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_rule_taxons" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_rules" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_rules_users" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotions" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_codes" DISABLE TRIGGER ALL;ALTER TABLE "spree_properties" DISABLE TRIGGER ALL;ALTER TABLE "spree_property_prototypes" DISABLE TRIGGER ALL;ALTER TABLE "spree_prototype_taxons" DISABLE TRIGGER ALL;ALTER TABLE "spree_prototypes" DISABLE TRIGGER ALL;ALTER TABLE "spree_refund_reasons" DISABLE TRIGGER ALL;ALTER TABLE "spree_refunds" DISABLE TRIGGER ALL;ALTER TABLE "spree_reimbursement_credits" DISABLE TRIGGER ALL;ALTER TABLE "spree_reimbursement_types" DISABLE TRIGGER ALL;ALTER TABLE "spree_reimbursements" DISABLE TRIGGER ALL;ALTER TABLE "spree_return_authorizations" DISABLE TRIGGER ALL;ALTER TABLE "spree_return_items" DISABLE TRIGGER ALL;ALTER TABLE "spree_return_reasons" DISABLE TRIGGER ALL;ALTER TABLE "spree_roles" DISABLE TRIGGER ALL;ALTER TABLE "spree_roles_users" DISABLE TRIGGER ALL;ALTER TABLE "spree_shipments" DISABLE TRIGGER ALL;ALTER TABLE "spree_shipping_categories" DISABLE TRIGGER ALL;ALTER TABLE "spree_shipping_method_categories" DISABLE TRIGGER ALL;ALTER TABLE "spree_shipping_method_stock_locations" DISABLE TRIGGER ALL;ALTER TABLE "spree_shipping_method_zones" DISABLE TRIGGER ALL;ALTER TABLE "spree_shipping_rate_taxes" DISABLE TRIGGER ALL;ALTER TABLE "spree_shipping_rates" DISABLE TRIGGER ALL;ALTER TABLE "spree_shipping_methods" DISABLE TRIGGER ALL;ALTER TABLE "spree_state_changes" DISABLE TRIGGER ALL;ALTER TABLE "spree_states" DISABLE TRIGGER ALL;ALTER TABLE "spree_stock_items" DISABLE TRIGGER ALL;ALTER TABLE "spree_stock_locations" DISABLE TRIGGER ALL;ALTER TABLE "spree_stock_movements" DISABLE TRIGGER ALL;ALTER TABLE "spree_store_credit_categories" DISABLE TRIGGER ALL;ALTER TABLE "spree_store_credit_types" DISABLE TRIGGER ALL;ALTER TABLE "spree_store_credits" DISABLE TRIGGER ALL;ALTER TABLE "spree_store_payment_methods" DISABLE TRIGGER ALL;ALTER TABLE "spree_stores" DISABLE TRIGGER ALL;ALTER TABLE "spree_store_credit_events" DISABLE TRIGGER ALL;ALTER TABLE "spree_tax_categories" DISABLE TRIGGER ALL;ALTER TABLE "spree_taxonomies" DISABLE TRIGGER ALL;ALTER TABLE "spree_taxons" DISABLE TRIGGER ALL;ALTER TABLE "spree_unit_cancels" DISABLE TRIGGER ALL;ALTER TABLE "spree_user_addresses" DISABLE TRIGGER ALL;ALTER TABLE "spree_user_stock_locations" DISABLE TRIGGER ALL;ALTER TABLE "spree_variant_property_rule_conditions" DISABLE TRIGGER ALL;ALTER TABLE "spree_tax_rates" DISABLE TRIGGER ALL;ALTER TABLE "spree_variant_property_rule_values" DISABLE TRIGGER ALL;ALTER TABLE "spree_variant_property_rules" DISABLE TRIGGER ALL;ALTER TABLE "spree_variants" DISABLE TRIGGER ALL;ALTER TABLE "spree_zone_members" DISABLE TRIGGER ALL;ALTER TABLE "spree_zones" DISABLE TRIGGER ALL;ALTER TABLE "spree_wallet_payment_sources" DISABLE TRIGGER ALL;ALTER TABLE "spree_payment_methods" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_rules_stores" DISABLE TRIGGER ALL;ALTER TABLE "spree_store_shipping_methods" DISABLE TRIGGER ALL;ALTER TABLE "spree_tax_rate_tax_categories" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_code_batches" DISABLE TRIGGER ALL;ALTER TABLE "spree_store_credit_reasons" DISABLE TRIGGER ALL[0m
|
|
627
|
+
[1m[35m (2.4ms)[0m [1m[35mCOMMIT[0m
|
|
628
|
+
[1m[35m (2.0ms)[0m [1m[34m SELECT schemaname || '.' || tablename
|
|
629
|
+
FROM pg_tables
|
|
630
|
+
WHERE
|
|
631
|
+
tablename !~ '_prt_' AND
|
|
632
|
+
tablename <> 'schema_migrations' AND tablename <> 'ar_internal_metadata' AND
|
|
633
|
+
schemaname = ANY (current_schemas(false))
|
|
634
|
+
[0m
|
|
635
|
+
[1m[35m (1.1ms)[0m [1m[34mselect table_name from information_schema.views where table_schema = 'solidus_bank_transfer_solidus_test'[0m
|
|
636
|
+
[1m[35m (306.7ms)[0m [1m[35mTRUNCATE TABLE "public"."active_storage_blobs", "public"."active_storage_attachments", "public"."friendly_id_slugs", "public"."spree_addresses", "public"."spree_users", "public"."spree_adjustment_reasons", "public"."spree_adjustments", "public"."spree_assets", "public"."spree_calculators", "public"."spree_cartons", "public"."spree_countries", "public"."spree_credit_cards", "public"."spree_customer_returns", "public"."spree_inventory_units", "public"."spree_line_item_actions", "public"."spree_line_items", "public"."spree_log_entries", "public"."spree_option_type_prototypes", "public"."spree_option_types", "public"."spree_option_values", "public"."spree_option_values_variants", "public"."spree_order_mutexes", "public"."spree_orders", "public"."spree_orders_promotions", "public"."spree_payment_capture_events", "public"."spree_payments", "public"."spree_preferences", "public"."spree_prices", "public"."spree_product_option_types", "public"."spree_product_promotion_rules", "public"."spree_product_properties", "public"."spree_products", "public"."spree_products_taxons", "public"."spree_promotion_action_line_items", "public"."spree_promotion_actions", "public"."spree_promotion_categories", "public"."spree_promotion_rule_taxons", "public"."spree_promotion_rules", "public"."spree_promotion_rules_users", "public"."spree_promotions", "public"."spree_promotion_codes", "public"."spree_properties", "public"."spree_property_prototypes", "public"."spree_prototype_taxons", "public"."spree_prototypes", "public"."spree_refund_reasons", "public"."spree_refunds", "public"."spree_reimbursement_credits", "public"."spree_reimbursement_types", "public"."spree_reimbursements", "public"."spree_return_authorizations", "public"."spree_return_items", "public"."spree_return_reasons", "public"."spree_roles", "public"."spree_roles_users", "public"."spree_shipments", "public"."spree_shipping_categories", "public"."spree_shipping_method_categories", "public"."spree_shipping_method_stock_locations", "public"."spree_shipping_method_zones", "public"."spree_shipping_rate_taxes", "public"."spree_shipping_rates", "public"."spree_shipping_methods", "public"."spree_state_changes", "public"."spree_states", "public"."spree_stock_items", "public"."spree_stock_locations", "public"."spree_stock_movements", "public"."spree_store_credit_categories", "public"."spree_store_credit_types", "public"."spree_store_credits", "public"."spree_store_payment_methods", "public"."spree_stores", "public"."spree_store_credit_events", "public"."spree_tax_categories", "public"."spree_taxonomies", "public"."spree_taxons", "public"."spree_unit_cancels", "public"."spree_user_addresses", "public"."spree_user_stock_locations", "public"."spree_variant_property_rule_conditions", "public"."spree_tax_rates", "public"."spree_variant_property_rule_values", "public"."spree_variant_property_rules", "public"."spree_variants", "public"."spree_zone_members", "public"."spree_zones", "public"."spree_wallet_payment_sources", "public"."spree_payment_methods", "public"."spree_promotion_rules_stores", "public"."spree_store_shipping_methods", "public"."spree_tax_rate_tax_categories", "public"."spree_promotion_code_batches", "public"."spree_store_credit_reasons" RESTART IDENTITY CASCADE;[0m
|
|
637
|
+
[1m[35m (6.4ms)[0m [1m[35mBEGIN[0m
|
|
638
|
+
[1m[35m (3.0ms)[0m [1m[35mALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "ar_internal_metadata" ENABLE TRIGGER ALL;ALTER TABLE "active_storage_blobs" ENABLE TRIGGER ALL;ALTER TABLE "spree_adjustments" ENABLE TRIGGER ALL;ALTER TABLE "spree_cartons" ENABLE TRIGGER ALL;ALTER TABLE "spree_inventory_units" ENABLE TRIGGER ALL;ALTER TABLE "spree_line_item_actions" ENABLE TRIGGER ALL;ALTER TABLE "spree_orders" ENABLE TRIGGER ALL;ALTER TABLE "spree_prices" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_actions" ENABLE TRIGGER ALL;ALTER TABLE "spree_reimbursement_credits" ENABLE TRIGGER ALL;ALTER TABLE "spree_reimbursement_types" ENABLE TRIGGER ALL;ALTER TABLE "spree_shipments" ENABLE TRIGGER ALL;ALTER TABLE "spree_state_changes" ENABLE TRIGGER ALL;ALTER TABLE "spree_states" ENABLE TRIGGER ALL;ALTER TABLE "spree_store_credit_types" ENABLE TRIGGER ALL;ALTER TABLE "spree_store_credits" ENABLE TRIGGER ALL;ALTER TABLE "spree_taxonomies" ENABLE TRIGGER ALL;ALTER TABLE "spree_variant_property_rule_values" ENABLE TRIGGER ALL;ALTER TABLE "spree_variant_property_rules" ENABLE TRIGGER ALL;ALTER TABLE "active_storage_attachments" ENABLE TRIGGER ALL;ALTER TABLE "friendly_id_slugs" ENABLE TRIGGER ALL;ALTER TABLE "spree_addresses" ENABLE TRIGGER ALL;ALTER TABLE "spree_users" ENABLE TRIGGER ALL;ALTER TABLE "spree_adjustment_reasons" ENABLE TRIGGER ALL;ALTER TABLE "spree_assets" ENABLE TRIGGER ALL;ALTER TABLE "spree_calculators" ENABLE TRIGGER ALL;ALTER TABLE "spree_countries" ENABLE TRIGGER ALL;ALTER TABLE "spree_credit_cards" ENABLE TRIGGER ALL;ALTER TABLE "spree_customer_returns" ENABLE TRIGGER ALL;ALTER TABLE "spree_line_items" ENABLE TRIGGER ALL;ALTER TABLE "spree_log_entries" ENABLE TRIGGER ALL;ALTER TABLE "spree_option_type_prototypes" ENABLE TRIGGER ALL;ALTER TABLE "spree_option_types" ENABLE TRIGGER ALL;ALTER TABLE "spree_option_values" ENABLE TRIGGER ALL;ALTER TABLE "spree_option_values_variants" ENABLE TRIGGER ALL;ALTER TABLE "spree_order_mutexes" ENABLE TRIGGER ALL;ALTER TABLE "spree_orders_promotions" ENABLE TRIGGER ALL;ALTER TABLE "spree_payment_capture_events" ENABLE TRIGGER ALL;ALTER TABLE "spree_payments" ENABLE TRIGGER ALL;ALTER TABLE "spree_preferences" ENABLE TRIGGER ALL;ALTER TABLE "spree_product_option_types" ENABLE TRIGGER ALL;ALTER TABLE "spree_product_promotion_rules" ENABLE TRIGGER ALL;ALTER TABLE "spree_product_properties" ENABLE TRIGGER ALL;ALTER TABLE "spree_products" ENABLE TRIGGER ALL;ALTER TABLE "spree_products_taxons" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_action_line_items" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_categories" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_rule_taxons" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_rules" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_rules_users" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotions" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_codes" ENABLE TRIGGER ALL;ALTER TABLE "spree_properties" ENABLE TRIGGER ALL;ALTER TABLE "spree_property_prototypes" ENABLE TRIGGER ALL;ALTER TABLE "spree_prototype_taxons" ENABLE TRIGGER ALL;ALTER TABLE "spree_prototypes" ENABLE TRIGGER ALL;ALTER TABLE "spree_refund_reasons" ENABLE TRIGGER ALL;ALTER TABLE "spree_refunds" ENABLE TRIGGER ALL;ALTER TABLE "spree_reimbursements" ENABLE TRIGGER ALL;ALTER TABLE "spree_return_authorizations" ENABLE TRIGGER ALL;ALTER TABLE "spree_return_items" ENABLE TRIGGER ALL;ALTER TABLE "spree_return_reasons" ENABLE TRIGGER ALL;ALTER TABLE "spree_roles" ENABLE TRIGGER ALL;ALTER TABLE "spree_roles_users" ENABLE TRIGGER ALL;ALTER TABLE "spree_shipping_categories" ENABLE TRIGGER ALL;ALTER TABLE "spree_shipping_method_categories" ENABLE TRIGGER ALL;ALTER TABLE "spree_shipping_method_stock_locations" ENABLE TRIGGER ALL;ALTER TABLE "spree_shipping_method_zones" ENABLE TRIGGER ALL;ALTER TABLE "spree_shipping_rate_taxes" ENABLE TRIGGER ALL;ALTER TABLE "spree_shipping_rates" ENABLE TRIGGER ALL;ALTER TABLE "spree_shipping_methods" ENABLE TRIGGER ALL;ALTER TABLE "spree_stock_items" ENABLE TRIGGER ALL;ALTER TABLE "spree_stock_locations" ENABLE TRIGGER ALL;ALTER TABLE "spree_stock_movements" ENABLE TRIGGER ALL;ALTER TABLE "spree_store_credit_categories" ENABLE TRIGGER ALL;ALTER TABLE "spree_store_payment_methods" ENABLE TRIGGER ALL;ALTER TABLE "spree_stores" ENABLE TRIGGER ALL;ALTER TABLE "spree_store_credit_events" ENABLE TRIGGER ALL;ALTER TABLE "spree_tax_categories" ENABLE TRIGGER ALL;ALTER TABLE "spree_taxons" ENABLE TRIGGER ALL;ALTER TABLE "spree_unit_cancels" ENABLE TRIGGER ALL;ALTER TABLE "spree_user_addresses" ENABLE TRIGGER ALL;ALTER TABLE "spree_user_stock_locations" ENABLE TRIGGER ALL;ALTER TABLE "spree_variant_property_rule_conditions" ENABLE TRIGGER ALL;ALTER TABLE "spree_tax_rates" ENABLE TRIGGER ALL;ALTER TABLE "spree_variants" ENABLE TRIGGER ALL;ALTER TABLE "spree_zone_members" ENABLE TRIGGER ALL;ALTER TABLE "spree_zones" ENABLE TRIGGER ALL;ALTER TABLE "spree_wallet_payment_sources" ENABLE TRIGGER ALL;ALTER TABLE "spree_payment_methods" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_rules_stores" ENABLE TRIGGER ALL;ALTER TABLE "spree_store_shipping_methods" ENABLE TRIGGER ALL;ALTER TABLE "spree_tax_rate_tax_categories" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_code_batches" ENABLE TRIGGER ALL;ALTER TABLE "spree_store_credit_reasons" ENABLE TRIGGER ALL[0m
|
|
639
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
|
640
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
641
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
642
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
643
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
644
|
+
[1m[36mSpree::PaymentMethod Load (0.5ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
645
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.7ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:09:47.712834"], ["updated_at", "2019-08-22 07:09:47.712834"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
646
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
647
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
648
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
649
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
650
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Update (0.3ms)[0m [1m[33mUPDATE "spree_payment_methods" SET "updated_at" = $1, "preferences" = $2 WHERE "spree_payment_methods"."id" = $3[0m [["updated_at", "2019-08-22 07:09:47.722774"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: IT00 S000 0000 0000 0000 0123 456\n:bank_name: Uncle Scrooge Bank & Partners\n:holder: Donald Duck\n"], ["id", 1]]
|
|
651
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
652
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
|
653
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
654
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
655
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
656
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
657
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
658
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.2ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:09:47.732837"], ["updated_at", "2019-08-22 07:09:47.732837"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
659
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
660
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
661
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
662
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
|
663
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
664
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
665
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
666
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
667
|
+
[1m[36mSpree::PaymentMethod Load (0.2ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
668
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.2ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:09:47.755654"], ["updated_at", "2019-08-22 07:09:47.755654"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
669
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
670
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
671
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
672
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
673
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
674
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
675
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
676
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
677
|
+
[1m[36mSpree::PaymentMethod Load (0.2ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
678
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.2ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:09:47.763862"], ["updated_at", "2019-08-22 07:09:47.763862"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
679
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
680
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
681
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
682
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
683
|
+
[1m[36mSpree::Store Load (0.4ms)[0m [1m[34mSELECT "spree_stores".* FROM "spree_stores" WHERE "spree_stores"."default" = $1 ORDER BY "spree_stores"."id" ASC LIMIT $2[0m [["default", true], ["LIMIT", 1]]
|
|
684
|
+
[1m[36mSpree::Order Exists (0.9ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R371909261"], ["LIMIT", 1]]
|
|
685
|
+
[1m[36mSpree::Order Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R371909261"], ["LIMIT", 1]]
|
|
686
|
+
[1m[36mSpree::Payment Exists (0.7ms)[0m [1m[34mSELECT 1 AS one FROM "spree_payments" WHERE "spree_payments"."number" = $1 LIMIT $2[0m [["number", "WEQCS9UR"], ["LIMIT", 1]]
|
|
687
|
+
[1m[36mSpree::Payment Create (0.5ms)[0m [1m[32mINSERT INTO "spree_payments" ("payment_method_id", "state", "created_at", "updated_at", "number") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["payment_method_id", 4], ["state", "pending"], ["created_at", "2019-08-22 07:09:47.931768"], ["updated_at", "2019-08-22 07:09:47.931768"], ["number", "WEQCS9UR"]]
|
|
688
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
689
|
+
[1m[35m (0.5ms)[0m [1m[31mROLLBACK[0m
|
|
690
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
691
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
692
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
693
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
694
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
695
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:09:47.948330"], ["updated_at", "2019-08-22 07:09:47.948330"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
696
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
697
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
698
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
699
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
700
|
+
[1m[36mSpree::Store Load (0.2ms)[0m [1m[34mSELECT "spree_stores".* FROM "spree_stores" WHERE "spree_stores"."default" = $1 ORDER BY "spree_stores"."id" ASC LIMIT $2[0m [["default", true], ["LIMIT", 1]]
|
|
701
|
+
[1m[36mSpree::Order Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R120756957"], ["LIMIT", 1]]
|
|
702
|
+
[1m[36mSpree::Order Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R120756957"], ["LIMIT", 1]]
|
|
703
|
+
[1m[36mSpree::Payment Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "spree_payments" WHERE "spree_payments"."number" = $1 LIMIT $2[0m [["number", "V92YUBZT"], ["LIMIT", 1]]
|
|
704
|
+
[1m[36mSpree::Payment Create (0.2ms)[0m [1m[32mINSERT INTO "spree_payments" ("payment_method_id", "state", "created_at", "updated_at", "number") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["payment_method_id", 5], ["state", "void"], ["created_at", "2019-08-22 07:09:47.956958"], ["updated_at", "2019-08-22 07:09:47.956958"], ["number", "V92YUBZT"]]
|
|
705
|
+
[1m[36mSpree::Order Exists (0.4ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."guest_token" = $1 LIMIT $2[0m [["guest_token", "9bMbDHGP4g0OkTHEiW8SDQ"], ["LIMIT", 1]]
|
|
706
|
+
[1m[36mSpree::Order Create (0.9ms)[0m [1m[32mINSERT INTO "spree_orders" ("number", "state", "created_at", "updated_at", "currency", "guest_token") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["number", "R120756957"], ["state", "cart"], ["created_at", "2019-08-22 07:09:48.020134"], ["updated_at", "2019-08-22 07:09:48.020134"], ["currency", "USD"], ["guest_token", "9bMbDHGP4g0OkTHEiW8SDQ"]]
|
|
707
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
708
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
709
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
710
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
711
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
712
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
713
|
+
[1m[36mSpree::PaymentMethod Load (0.2ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
714
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:09:48.026177"], ["updated_at", "2019-08-22 07:09:48.026177"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
715
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
716
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
717
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
718
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
719
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
720
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
721
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
722
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
723
|
+
[1m[36mSpree::PaymentMethod Load (0.2ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
724
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:09:48.033315"], ["updated_at", "2019-08-22 07:09:48.033315"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
725
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
726
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
727
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
728
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
729
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
730
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
731
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
732
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
733
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
734
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.2ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:09:48.040518"], ["updated_at", "2019-08-22 07:09:48.040518"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
735
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
736
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
737
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
738
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
739
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
740
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
741
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
|
742
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
743
|
+
[1m[36mSpree::PaymentMethod Load (0.2ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
744
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:09:48.048497"], ["updated_at", "2019-08-22 07:09:48.048497"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
745
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
746
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
747
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
748
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
749
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
750
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
751
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
752
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
753
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
754
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.2ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:09:48.055492"], ["updated_at", "2019-08-22 07:09:48.055492"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
755
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
756
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
757
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
758
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
759
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
760
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
761
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
762
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
763
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
764
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:09:48.062000"], ["updated_at", "2019-08-22 07:09:48.062000"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
765
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
766
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
767
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
768
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
769
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
770
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
771
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
772
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
773
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
774
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.4ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:09:48.069559"], ["updated_at", "2019-08-22 07:09:48.069559"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
775
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
776
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
777
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
778
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
779
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
780
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
781
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
782
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
783
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
784
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.2ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:09:48.076841"], ["updated_at", "2019-08-22 07:09:48.076841"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
785
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
786
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
787
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
788
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
789
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
790
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
791
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
792
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
793
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
794
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.2ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:09:48.084203"], ["updated_at", "2019-08-22 07:09:48.084203"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
795
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
796
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
797
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
798
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
799
|
+
[1m[36mSpree::Store Load (0.2ms)[0m [1m[34mSELECT "spree_stores".* FROM "spree_stores" WHERE "spree_stores"."default" = $1 ORDER BY "spree_stores"."id" ASC LIMIT $2[0m [["default", true], ["LIMIT", 1]]
|
|
800
|
+
[1m[36mSpree::Order Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R691723956"], ["LIMIT", 1]]
|
|
801
|
+
[1m[36mSpree::Order Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R691723956"], ["LIMIT", 1]]
|
|
802
|
+
[1m[36mSpree::Payment Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "spree_payments" WHERE "spree_payments"."number" = $1 LIMIT $2[0m [["number", "W9MFKDZC"], ["LIMIT", 1]]
|
|
803
|
+
[1m[36mSpree::Payment Create (0.2ms)[0m [1m[32mINSERT INTO "spree_payments" ("payment_method_id", "state", "created_at", "updated_at", "number") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["payment_method_id", 14], ["state", "void"], ["created_at", "2019-08-22 07:09:48.092821"], ["updated_at", "2019-08-22 07:09:48.092821"], ["number", "W9MFKDZC"]]
|
|
804
|
+
[1m[36mSpree::Order Exists (0.4ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."guest_token" = $1 LIMIT $2[0m [["guest_token", "lBUL8eBA5tIw6ySKAe6ppQ"], ["LIMIT", 1]]
|
|
805
|
+
[1m[36mSpree::Order Create (0.3ms)[0m [1m[32mINSERT INTO "spree_orders" ("number", "state", "created_at", "updated_at", "currency", "guest_token") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["number", "R691723956"], ["state", "cart"], ["created_at", "2019-08-22 07:09:48.097591"], ["updated_at", "2019-08-22 07:09:48.097591"], ["currency", "USD"], ["guest_token", "lBUL8eBA5tIw6ySKAe6ppQ"]]
|
|
806
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
807
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
808
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
809
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
810
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
811
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
812
|
+
[1m[36mSpree::PaymentMethod Load (0.2ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
813
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:09:48.102554"], ["updated_at", "2019-08-22 07:09:48.102554"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
814
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
815
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
816
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
817
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
818
|
+
[1m[36mSpree::Store Load (0.2ms)[0m [1m[34mSELECT "spree_stores".* FROM "spree_stores" WHERE "spree_stores"."default" = $1 ORDER BY "spree_stores"."id" ASC LIMIT $2[0m [["default", true], ["LIMIT", 1]]
|
|
819
|
+
[1m[36mSpree::Order Exists (0.3ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R848720736"], ["LIMIT", 1]]
|
|
820
|
+
[1m[36mSpree::Order Exists (0.4ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R848720736"], ["LIMIT", 1]]
|
|
821
|
+
[1m[36mSpree::Payment Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "spree_payments" WHERE "spree_payments"."number" = $1 LIMIT $2[0m [["number", "KNBVP5ES"], ["LIMIT", 1]]
|
|
822
|
+
[1m[36mSpree::Payment Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payments" ("payment_method_id", "state", "created_at", "updated_at", "number") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["payment_method_id", 15], ["state", "pending"], ["created_at", "2019-08-22 07:09:48.111804"], ["updated_at", "2019-08-22 07:09:48.111804"], ["number", "KNBVP5ES"]]
|
|
823
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
824
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
825
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
826
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
827
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
828
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
829
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
830
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:09:48.117069"], ["updated_at", "2019-08-22 07:09:48.117069"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
831
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
832
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
833
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
834
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
835
|
+
[1m[36mSpree::Store Load (0.2ms)[0m [1m[34mSELECT "spree_stores".* FROM "spree_stores" WHERE "spree_stores"."default" = $1 ORDER BY "spree_stores"."id" ASC LIMIT $2[0m [["default", true], ["LIMIT", 1]]
|
|
836
|
+
[1m[36mSpree::Order Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R313571243"], ["LIMIT", 1]]
|
|
837
|
+
[1m[36mSpree::Order Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R313571243"], ["LIMIT", 1]]
|
|
838
|
+
[1m[36mSpree::Payment Exists (0.3ms)[0m [1m[34mSELECT 1 AS one FROM "spree_payments" WHERE "spree_payments"."number" = $1 LIMIT $2[0m [["number", "BNMNUUEL"], ["LIMIT", 1]]
|
|
839
|
+
[1m[36mSpree::Payment Create (0.2ms)[0m [1m[32mINSERT INTO "spree_payments" ("payment_method_id", "state", "created_at", "updated_at", "number") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["payment_method_id", 16], ["state", "checkout"], ["created_at", "2019-08-22 07:09:48.125614"], ["updated_at", "2019-08-22 07:09:48.125614"], ["number", "BNMNUUEL"]]
|
|
840
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
841
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
842
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
843
|
+
[1m[35m (5.1ms)[0m [1m[35mALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "ar_internal_metadata" DISABLE TRIGGER ALL;ALTER TABLE "active_storage_blobs" DISABLE TRIGGER ALL;ALTER TABLE "spree_adjustments" DISABLE TRIGGER ALL;ALTER TABLE "spree_cartons" DISABLE TRIGGER ALL;ALTER TABLE "spree_inventory_units" DISABLE TRIGGER ALL;ALTER TABLE "spree_line_item_actions" DISABLE TRIGGER ALL;ALTER TABLE "spree_orders" DISABLE TRIGGER ALL;ALTER TABLE "spree_prices" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_actions" DISABLE TRIGGER ALL;ALTER TABLE "spree_reimbursement_credits" DISABLE TRIGGER ALL;ALTER TABLE "spree_reimbursement_types" DISABLE TRIGGER ALL;ALTER TABLE "spree_shipments" DISABLE TRIGGER ALL;ALTER TABLE "spree_state_changes" DISABLE TRIGGER ALL;ALTER TABLE "spree_states" DISABLE TRIGGER ALL;ALTER TABLE "spree_store_credit_types" DISABLE TRIGGER ALL;ALTER TABLE "spree_store_credits" DISABLE TRIGGER ALL;ALTER TABLE "spree_taxonomies" DISABLE TRIGGER ALL;ALTER TABLE "spree_variant_property_rule_values" DISABLE TRIGGER ALL;ALTER TABLE "spree_variant_property_rules" DISABLE TRIGGER ALL;ALTER TABLE "active_storage_attachments" DISABLE TRIGGER ALL;ALTER TABLE "friendly_id_slugs" DISABLE TRIGGER ALL;ALTER TABLE "spree_addresses" DISABLE TRIGGER ALL;ALTER TABLE "spree_users" DISABLE TRIGGER ALL;ALTER TABLE "spree_adjustment_reasons" DISABLE TRIGGER ALL;ALTER TABLE "spree_assets" DISABLE TRIGGER ALL;ALTER TABLE "spree_calculators" DISABLE TRIGGER ALL;ALTER TABLE "spree_countries" DISABLE TRIGGER ALL;ALTER TABLE "spree_credit_cards" DISABLE TRIGGER ALL;ALTER TABLE "spree_customer_returns" DISABLE TRIGGER ALL;ALTER TABLE "spree_line_items" DISABLE TRIGGER ALL;ALTER TABLE "spree_log_entries" DISABLE TRIGGER ALL;ALTER TABLE "spree_option_type_prototypes" DISABLE TRIGGER ALL;ALTER TABLE "spree_option_types" DISABLE TRIGGER ALL;ALTER TABLE "spree_option_values" DISABLE TRIGGER ALL;ALTER TABLE "spree_option_values_variants" DISABLE TRIGGER ALL;ALTER TABLE "spree_order_mutexes" DISABLE TRIGGER ALL;ALTER TABLE "spree_orders_promotions" DISABLE TRIGGER ALL;ALTER TABLE "spree_payment_capture_events" DISABLE TRIGGER ALL;ALTER TABLE "spree_payments" DISABLE TRIGGER ALL;ALTER TABLE "spree_preferences" DISABLE TRIGGER ALL;ALTER TABLE "spree_product_option_types" DISABLE TRIGGER ALL;ALTER TABLE "spree_product_promotion_rules" DISABLE TRIGGER ALL;ALTER TABLE "spree_product_properties" DISABLE TRIGGER ALL;ALTER TABLE "spree_products" DISABLE TRIGGER ALL;ALTER TABLE "spree_products_taxons" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_action_line_items" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_categories" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_rule_taxons" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_rules" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_rules_users" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotions" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_codes" DISABLE TRIGGER ALL;ALTER TABLE "spree_properties" DISABLE TRIGGER ALL;ALTER TABLE "spree_property_prototypes" DISABLE TRIGGER ALL;ALTER TABLE "spree_prototype_taxons" DISABLE TRIGGER ALL;ALTER TABLE "spree_prototypes" DISABLE TRIGGER ALL;ALTER TABLE "spree_refund_reasons" DISABLE TRIGGER ALL;ALTER TABLE "spree_refunds" DISABLE TRIGGER ALL;ALTER TABLE "spree_reimbursements" DISABLE TRIGGER ALL;ALTER TABLE "spree_return_authorizations" DISABLE TRIGGER ALL;ALTER TABLE "spree_return_items" DISABLE TRIGGER ALL;ALTER TABLE "spree_return_reasons" DISABLE TRIGGER ALL;ALTER TABLE "spree_roles" DISABLE TRIGGER ALL;ALTER TABLE "spree_roles_users" DISABLE TRIGGER ALL;ALTER TABLE "spree_shipping_categories" DISABLE TRIGGER ALL;ALTER TABLE "spree_shipping_method_categories" DISABLE TRIGGER ALL;ALTER TABLE "spree_shipping_method_stock_locations" DISABLE TRIGGER ALL;ALTER TABLE "spree_shipping_method_zones" DISABLE TRIGGER ALL;ALTER TABLE "spree_shipping_rate_taxes" DISABLE TRIGGER ALL;ALTER TABLE "spree_shipping_rates" DISABLE TRIGGER ALL;ALTER TABLE "spree_shipping_methods" DISABLE TRIGGER ALL;ALTER TABLE "spree_stock_items" DISABLE TRIGGER ALL;ALTER TABLE "spree_stock_locations" DISABLE TRIGGER ALL;ALTER TABLE "spree_stock_movements" DISABLE TRIGGER ALL;ALTER TABLE "spree_store_credit_categories" DISABLE TRIGGER ALL;ALTER TABLE "spree_store_payment_methods" DISABLE TRIGGER ALL;ALTER TABLE "spree_stores" DISABLE TRIGGER ALL;ALTER TABLE "spree_store_credit_events" DISABLE TRIGGER ALL;ALTER TABLE "spree_tax_categories" DISABLE TRIGGER ALL;ALTER TABLE "spree_taxons" DISABLE TRIGGER ALL;ALTER TABLE "spree_unit_cancels" DISABLE TRIGGER ALL;ALTER TABLE "spree_user_addresses" DISABLE TRIGGER ALL;ALTER TABLE "spree_user_stock_locations" DISABLE TRIGGER ALL;ALTER TABLE "spree_variant_property_rule_conditions" DISABLE TRIGGER ALL;ALTER TABLE "spree_tax_rates" DISABLE TRIGGER ALL;ALTER TABLE "spree_variants" DISABLE TRIGGER ALL;ALTER TABLE "spree_zone_members" DISABLE TRIGGER ALL;ALTER TABLE "spree_zones" DISABLE TRIGGER ALL;ALTER TABLE "spree_wallet_payment_sources" DISABLE TRIGGER ALL;ALTER TABLE "spree_payment_methods" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_rules_stores" DISABLE TRIGGER ALL;ALTER TABLE "spree_store_shipping_methods" DISABLE TRIGGER ALL;ALTER TABLE "spree_tax_rate_tax_categories" DISABLE TRIGGER ALL;ALTER TABLE "spree_promotion_code_batches" DISABLE TRIGGER ALL;ALTER TABLE "spree_store_credit_reasons" DISABLE TRIGGER ALL[0m
|
|
844
|
+
[1m[35m (31.4ms)[0m [1m[35mCOMMIT[0m
|
|
845
|
+
[1m[35m (2.8ms)[0m [1m[34m SELECT schemaname || '.' || tablename
|
|
846
|
+
FROM pg_tables
|
|
847
|
+
WHERE
|
|
848
|
+
tablename !~ '_prt_' AND
|
|
849
|
+
tablename <> 'schema_migrations' AND tablename <> 'ar_internal_metadata' AND
|
|
850
|
+
schemaname = ANY (current_schemas(false))
|
|
851
|
+
[0m
|
|
852
|
+
[1m[35m (1.2ms)[0m [1m[34mselect table_name from information_schema.views where table_schema = 'solidus_bank_transfer_solidus_test'[0m
|
|
853
|
+
[1m[35m (395.0ms)[0m [1m[35mTRUNCATE TABLE "public"."active_storage_blobs", "public"."spree_adjustments", "public"."spree_cartons", "public"."spree_inventory_units", "public"."spree_line_item_actions", "public"."spree_orders", "public"."spree_prices", "public"."spree_promotion_actions", "public"."spree_reimbursement_credits", "public"."spree_reimbursement_types", "public"."spree_shipments", "public"."spree_state_changes", "public"."spree_states", "public"."spree_store_credit_types", "public"."spree_store_credits", "public"."spree_taxonomies", "public"."spree_variant_property_rule_values", "public"."spree_variant_property_rules", "public"."active_storage_attachments", "public"."friendly_id_slugs", "public"."spree_addresses", "public"."spree_users", "public"."spree_adjustment_reasons", "public"."spree_assets", "public"."spree_calculators", "public"."spree_countries", "public"."spree_credit_cards", "public"."spree_customer_returns", "public"."spree_line_items", "public"."spree_log_entries", "public"."spree_option_type_prototypes", "public"."spree_option_types", "public"."spree_option_values", "public"."spree_option_values_variants", "public"."spree_order_mutexes", "public"."spree_orders_promotions", "public"."spree_payment_capture_events", "public"."spree_payments", "public"."spree_preferences", "public"."spree_product_option_types", "public"."spree_product_promotion_rules", "public"."spree_product_properties", "public"."spree_products", "public"."spree_products_taxons", "public"."spree_promotion_action_line_items", "public"."spree_promotion_categories", "public"."spree_promotion_rule_taxons", "public"."spree_promotion_rules", "public"."spree_promotion_rules_users", "public"."spree_promotions", "public"."spree_promotion_codes", "public"."spree_properties", "public"."spree_property_prototypes", "public"."spree_prototype_taxons", "public"."spree_prototypes", "public"."spree_refund_reasons", "public"."spree_refunds", "public"."spree_reimbursements", "public"."spree_return_authorizations", "public"."spree_return_items", "public"."spree_return_reasons", "public"."spree_roles", "public"."spree_roles_users", "public"."spree_shipping_categories", "public"."spree_shipping_method_categories", "public"."spree_shipping_method_stock_locations", "public"."spree_shipping_method_zones", "public"."spree_shipping_rate_taxes", "public"."spree_shipping_rates", "public"."spree_shipping_methods", "public"."spree_stock_items", "public"."spree_stock_locations", "public"."spree_stock_movements", "public"."spree_store_credit_categories", "public"."spree_store_payment_methods", "public"."spree_stores", "public"."spree_store_credit_events", "public"."spree_tax_categories", "public"."spree_taxons", "public"."spree_unit_cancels", "public"."spree_user_addresses", "public"."spree_user_stock_locations", "public"."spree_variant_property_rule_conditions", "public"."spree_tax_rates", "public"."spree_variants", "public"."spree_zone_members", "public"."spree_zones", "public"."spree_wallet_payment_sources", "public"."spree_payment_methods", "public"."spree_promotion_rules_stores", "public"."spree_store_shipping_methods", "public"."spree_tax_rate_tax_categories", "public"."spree_promotion_code_batches", "public"."spree_store_credit_reasons" RESTART IDENTITY CASCADE;[0m
|
|
854
|
+
[1m[35m (10.0ms)[0m [1m[35mBEGIN[0m
|
|
855
|
+
[1m[35m (3.2ms)[0m [1m[35mALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "ar_internal_metadata" ENABLE TRIGGER ALL;ALTER TABLE "active_storage_blobs" ENABLE TRIGGER ALL;ALTER TABLE "friendly_id_slugs" ENABLE TRIGGER ALL;ALTER TABLE "spree_adjustments" ENABLE TRIGGER ALL;ALTER TABLE "spree_addresses" ENABLE TRIGGER ALL;ALTER TABLE "spree_users" ENABLE TRIGGER ALL;ALTER TABLE "spree_cartons" ENABLE TRIGGER ALL;ALTER TABLE "spree_adjustment_reasons" ENABLE TRIGGER ALL;ALTER TABLE "spree_assets" ENABLE TRIGGER ALL;ALTER TABLE "spree_calculators" ENABLE TRIGGER ALL;ALTER TABLE "spree_countries" ENABLE TRIGGER ALL;ALTER TABLE "spree_credit_cards" ENABLE TRIGGER ALL;ALTER TABLE "spree_inventory_units" ENABLE TRIGGER ALL;ALTER TABLE "spree_line_item_actions" ENABLE TRIGGER ALL;ALTER TABLE "spree_customer_returns" ENABLE TRIGGER ALL;ALTER TABLE "spree_line_items" ENABLE TRIGGER ALL;ALTER TABLE "spree_log_entries" ENABLE TRIGGER ALL;ALTER TABLE "spree_option_type_prototypes" ENABLE TRIGGER ALL;ALTER TABLE "spree_option_types" ENABLE TRIGGER ALL;ALTER TABLE "spree_option_values" ENABLE TRIGGER ALL;ALTER TABLE "spree_option_values_variants" ENABLE TRIGGER ALL;ALTER TABLE "spree_order_mutexes" ENABLE TRIGGER ALL;ALTER TABLE "spree_orders_promotions" ENABLE TRIGGER ALL;ALTER TABLE "spree_payment_capture_events" ENABLE TRIGGER ALL;ALTER TABLE "spree_payments" ENABLE TRIGGER ALL;ALTER TABLE "spree_orders" ENABLE TRIGGER ALL;ALTER TABLE "spree_preferences" ENABLE TRIGGER ALL;ALTER TABLE "spree_product_option_types" ENABLE TRIGGER ALL;ALTER TABLE "spree_product_promotion_rules" ENABLE TRIGGER ALL;ALTER TABLE "spree_product_properties" ENABLE TRIGGER ALL;ALTER TABLE "spree_products" ENABLE TRIGGER ALL;ALTER TABLE "spree_prices" ENABLE TRIGGER ALL;ALTER TABLE "spree_products_taxons" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_action_line_items" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_categories" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_rule_taxons" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_rules" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_rules_users" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotions" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_codes" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_actions" ENABLE TRIGGER ALL;ALTER TABLE "spree_properties" ENABLE TRIGGER ALL;ALTER TABLE "spree_property_prototypes" ENABLE TRIGGER ALL;ALTER TABLE "spree_prototype_taxons" ENABLE TRIGGER ALL;ALTER TABLE "spree_prototypes" ENABLE TRIGGER ALL;ALTER TABLE "spree_refund_reasons" ENABLE TRIGGER ALL;ALTER TABLE "spree_refunds" ENABLE TRIGGER ALL;ALTER TABLE "spree_reimbursements" ENABLE TRIGGER ALL;ALTER TABLE "spree_return_authorizations" ENABLE TRIGGER ALL;ALTER TABLE "spree_return_items" ENABLE TRIGGER ALL;ALTER TABLE "spree_return_reasons" ENABLE TRIGGER ALL;ALTER TABLE "spree_roles" ENABLE TRIGGER ALL;ALTER TABLE "spree_roles_users" ENABLE TRIGGER ALL;ALTER TABLE "spree_shipping_categories" ENABLE TRIGGER ALL;ALTER TABLE "spree_shipping_method_categories" ENABLE TRIGGER ALL;ALTER TABLE "spree_shipping_method_stock_locations" ENABLE TRIGGER ALL;ALTER TABLE "spree_shipping_method_zones" ENABLE TRIGGER ALL;ALTER TABLE "spree_shipping_rate_taxes" ENABLE TRIGGER ALL;ALTER TABLE "spree_shipping_rates" ENABLE TRIGGER ALL;ALTER TABLE "spree_reimbursement_credits" ENABLE TRIGGER ALL;ALTER TABLE "spree_reimbursement_types" ENABLE TRIGGER ALL;ALTER TABLE "spree_shipping_methods" ENABLE TRIGGER ALL;ALTER TABLE "spree_stock_items" ENABLE TRIGGER ALL;ALTER TABLE "spree_stock_locations" ENABLE TRIGGER ALL;ALTER TABLE "spree_stock_movements" ENABLE TRIGGER ALL;ALTER TABLE "spree_store_credit_categories" ENABLE TRIGGER ALL;ALTER TABLE "spree_store_payment_methods" ENABLE TRIGGER ALL;ALTER TABLE "spree_stores" ENABLE TRIGGER ALL;ALTER TABLE "spree_shipments" ENABLE TRIGGER ALL;ALTER TABLE "spree_store_credit_events" ENABLE TRIGGER ALL;ALTER TABLE "spree_tax_categories" ENABLE TRIGGER ALL;ALTER TABLE "spree_taxons" ENABLE TRIGGER ALL;ALTER TABLE "spree_unit_cancels" ENABLE TRIGGER ALL;ALTER TABLE "spree_user_addresses" ENABLE TRIGGER ALL;ALTER TABLE "spree_user_stock_locations" ENABLE TRIGGER ALL;ALTER TABLE "spree_variant_property_rule_conditions" ENABLE TRIGGER ALL;ALTER TABLE "spree_tax_rates" ENABLE TRIGGER ALL;ALTER TABLE "spree_state_changes" ENABLE TRIGGER ALL;ALTER TABLE "spree_states" ENABLE TRIGGER ALL;ALTER TABLE "spree_variants" ENABLE TRIGGER ALL;ALTER TABLE "spree_zone_members" ENABLE TRIGGER ALL;ALTER TABLE "spree_zones" ENABLE TRIGGER ALL;ALTER TABLE "spree_wallet_payment_sources" ENABLE TRIGGER ALL;ALTER TABLE "spree_payment_methods" ENABLE TRIGGER ALL;ALTER TABLE "spree_store_credit_types" ENABLE TRIGGER ALL;ALTER TABLE "spree_store_credits" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_rules_stores" ENABLE TRIGGER ALL;ALTER TABLE "spree_store_shipping_methods" ENABLE TRIGGER ALL;ALTER TABLE "spree_tax_rate_tax_categories" ENABLE TRIGGER ALL;ALTER TABLE "spree_promotion_code_batches" ENABLE TRIGGER ALL;ALTER TABLE "spree_store_credit_reasons" ENABLE TRIGGER ALL;ALTER TABLE "spree_taxonomies" ENABLE TRIGGER ALL;ALTER TABLE "spree_variant_property_rule_values" ENABLE TRIGGER ALL;ALTER TABLE "spree_variant_property_rules" ENABLE TRIGGER ALL;ALTER TABLE "active_storage_attachments" ENABLE TRIGGER ALL[0m
|
|
856
|
+
[1m[35m (1.0ms)[0m [1m[35mCOMMIT[0m
|
|
857
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
858
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
859
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
860
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
861
|
+
[1m[36mSpree::PaymentMethod Load (0.5ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
862
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.7ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:26:46.593564"], ["updated_at", "2019-08-22 07:26:46.593564"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
863
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
864
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
865
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
866
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
|
867
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
868
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
869
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
870
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
871
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
872
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.4ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:26:46.607163"], ["updated_at", "2019-08-22 07:26:46.607163"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
873
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
874
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
875
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
876
|
+
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
|
|
877
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
878
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
879
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
880
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
881
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
882
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:26:46.627543"], ["updated_at", "2019-08-22 07:26:46.627543"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
883
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
884
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
885
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
886
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
887
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Update (0.4ms)[0m [1m[33mUPDATE "spree_payment_methods" SET "updated_at" = $1, "preferences" = $2 WHERE "spree_payment_methods"."id" = $3[0m [["updated_at", "2019-08-22 07:26:46.632958"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: IT00 S000 0000 0000 0000 0123 456\n:bank_name: Uncle Scrooge Bank & Partners\n:holder: Donald Duck\n"], ["id", 3]]
|
|
888
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
889
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
|
890
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
891
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
892
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
893
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
894
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
895
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.2ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:26:46.642960"], ["updated_at", "2019-08-22 07:26:46.642960"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
896
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
897
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
898
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
899
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
|
900
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
901
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
902
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
903
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
904
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
905
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.4ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:26:46.650133"], ["updated_at", "2019-08-22 07:26:46.650133"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
906
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
907
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
908
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
909
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
910
|
+
[1m[36mSpree::Store Load (0.4ms)[0m [1m[34mSELECT "spree_stores".* FROM "spree_stores" WHERE "spree_stores"."default" = $1 ORDER BY "spree_stores"."id" ASC LIMIT $2[0m [["default", true], ["LIMIT", 1]]
|
|
911
|
+
[1m[36mSpree::Order Exists (2.0ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R293570663"], ["LIMIT", 1]]
|
|
912
|
+
[1m[36mSpree::Order Exists (0.6ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R293570663"], ["LIMIT", 1]]
|
|
913
|
+
[1m[36mSpree::Payment Exists (0.6ms)[0m [1m[34mSELECT 1 AS one FROM "spree_payments" WHERE "spree_payments"."number" = $1 LIMIT $2[0m [["number", "4QY9C2HS"], ["LIMIT", 1]]
|
|
914
|
+
[1m[36mSpree::Payment Create (0.7ms)[0m [1m[32mINSERT INTO "spree_payments" ("payment_method_id", "state", "created_at", "updated_at", "number") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["payment_method_id", 5], ["state", "pending"], ["created_at", "2019-08-22 07:26:46.827931"], ["updated_at", "2019-08-22 07:26:46.827931"], ["number", "4QY9C2HS"]]
|
|
915
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
916
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
|
917
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
918
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
919
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
920
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
921
|
+
[1m[36mSpree::PaymentMethod Load (0.2ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
922
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.4ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:26:46.844581"], ["updated_at", "2019-08-22 07:26:46.844581"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
923
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
924
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
925
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
926
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
927
|
+
[1m[36mSpree::Store Load (0.2ms)[0m [1m[34mSELECT "spree_stores".* FROM "spree_stores" WHERE "spree_stores"."default" = $1 ORDER BY "spree_stores"."id" ASC LIMIT $2[0m [["default", true], ["LIMIT", 1]]
|
|
928
|
+
[1m[36mSpree::Order Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R369114448"], ["LIMIT", 1]]
|
|
929
|
+
[1m[36mSpree::Order Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R369114448"], ["LIMIT", 1]]
|
|
930
|
+
[1m[36mSpree::Payment Exists (0.4ms)[0m [1m[34mSELECT 1 AS one FROM "spree_payments" WHERE "spree_payments"."number" = $1 LIMIT $2[0m [["number", "EZGAWSV2"], ["LIMIT", 1]]
|
|
931
|
+
[1m[36mSpree::Payment Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payments" ("payment_method_id", "state", "created_at", "updated_at", "number") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["payment_method_id", 6], ["state", "void"], ["created_at", "2019-08-22 07:26:46.854350"], ["updated_at", "2019-08-22 07:26:46.854350"], ["number", "EZGAWSV2"]]
|
|
932
|
+
[1m[36mSpree::Order Exists (0.5ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."guest_token" = $1 LIMIT $2[0m [["guest_token", "9oF5mUPvgwS7h9ccGV6Tyw"], ["LIMIT", 1]]
|
|
933
|
+
[1m[36mSpree::Order Create (1.2ms)[0m [1m[32mINSERT INTO "spree_orders" ("number", "state", "created_at", "updated_at", "currency", "guest_token") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["number", "R369114448"], ["state", "cart"], ["created_at", "2019-08-22 07:26:46.922442"], ["updated_at", "2019-08-22 07:26:46.922442"], ["currency", "USD"], ["guest_token", "9oF5mUPvgwS7h9ccGV6Tyw"]]
|
|
934
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
935
|
+
[1m[35m (0.3ms)[0m [1m[31mROLLBACK[0m
|
|
936
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
937
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
938
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
939
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
940
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
941
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:26:46.929764"], ["updated_at", "2019-08-22 07:26:46.929764"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
942
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
943
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
944
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
945
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
946
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
947
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
948
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
949
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
950
|
+
[1m[36mSpree::PaymentMethod Load (0.4ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
951
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:26:46.936675"], ["updated_at", "2019-08-22 07:26:46.936675"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
952
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
953
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
954
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
955
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
956
|
+
[1m[36mSpree::Store Load (0.2ms)[0m [1m[34mSELECT "spree_stores".* FROM "spree_stores" WHERE "spree_stores"."default" = $1 ORDER BY "spree_stores"."id" ASC LIMIT $2[0m [["default", true], ["LIMIT", 1]]
|
|
957
|
+
[1m[36mSpree::Order Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R383040204"], ["LIMIT", 1]]
|
|
958
|
+
[1m[36mSpree::Order Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R383040204"], ["LIMIT", 1]]
|
|
959
|
+
[1m[36mSpree::Payment Exists (0.3ms)[0m [1m[34mSELECT 1 AS one FROM "spree_payments" WHERE "spree_payments"."number" = $1 LIMIT $2[0m [["number", "5XBHNRQR"], ["LIMIT", 1]]
|
|
960
|
+
[1m[36mSpree::Payment Create (0.2ms)[0m [1m[32mINSERT INTO "spree_payments" ("payment_method_id", "state", "created_at", "updated_at", "number") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["payment_method_id", 8], ["state", "pending"], ["created_at", "2019-08-22 07:26:46.946448"], ["updated_at", "2019-08-22 07:26:46.946448"], ["number", "5XBHNRQR"]]
|
|
961
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
962
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
963
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
964
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
965
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
966
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
967
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
968
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.4ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:26:46.951702"], ["updated_at", "2019-08-22 07:26:46.951702"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
969
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
970
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
971
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
972
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
973
|
+
[1m[36mSpree::Store Load (0.2ms)[0m [1m[34mSELECT "spree_stores".* FROM "spree_stores" WHERE "spree_stores"."default" = $1 ORDER BY "spree_stores"."id" ASC LIMIT $2[0m [["default", true], ["LIMIT", 1]]
|
|
974
|
+
[1m[36mSpree::Order Exists (0.4ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R952216150"], ["LIMIT", 1]]
|
|
975
|
+
[1m[36mSpree::Order Exists (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R952216150"], ["LIMIT", 1]]
|
|
976
|
+
[1m[36mSpree::Payment Exists (0.3ms)[0m [1m[34mSELECT 1 AS one FROM "spree_payments" WHERE "spree_payments"."number" = $1 LIMIT $2[0m [["number", "7P2BLPWH"], ["LIMIT", 1]]
|
|
977
|
+
[1m[36mSpree::Payment Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payments" ("payment_method_id", "state", "created_at", "updated_at", "number") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["payment_method_id", 9], ["state", "checkout"], ["created_at", "2019-08-22 07:26:46.962551"], ["updated_at", "2019-08-22 07:26:46.962551"], ["number", "7P2BLPWH"]]
|
|
978
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
979
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
980
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
981
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
982
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
983
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
984
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
985
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.2ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:26:46.968147"], ["updated_at", "2019-08-22 07:26:46.968147"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
986
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
987
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
988
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
989
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
990
|
+
[1m[36mSpree::Store Load (0.3ms)[0m [1m[34mSELECT "spree_stores".* FROM "spree_stores" WHERE "spree_stores"."default" = $1 ORDER BY "spree_stores"."id" ASC LIMIT $2[0m [["default", true], ["LIMIT", 1]]
|
|
991
|
+
[1m[36mSpree::Order Exists (0.3ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R578483955"], ["LIMIT", 1]]
|
|
992
|
+
[1m[36mSpree::Order Exists (0.3ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."number" = $1 LIMIT $2[0m [["number", "R578483955"], ["LIMIT", 1]]
|
|
993
|
+
[1m[36mSpree::Payment Exists (0.3ms)[0m [1m[34mSELECT 1 AS one FROM "spree_payments" WHERE "spree_payments"."number" = $1 LIMIT $2[0m [["number", "EJHCHEK3"], ["LIMIT", 1]]
|
|
994
|
+
[1m[36mSpree::Payment Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payments" ("payment_method_id", "state", "created_at", "updated_at", "number") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["payment_method_id", 10], ["state", "void"], ["created_at", "2019-08-22 07:26:46.978991"], ["updated_at", "2019-08-22 07:26:46.978991"], ["number", "EJHCHEK3"]]
|
|
995
|
+
[1m[36mSpree::Order Exists (0.4ms)[0m [1m[34mSELECT 1 AS one FROM "spree_orders" WHERE "spree_orders"."guest_token" = $1 LIMIT $2[0m [["guest_token", "vcaOCA0Dg257uMvW8cYK5A"], ["LIMIT", 1]]
|
|
996
|
+
[1m[36mSpree::Order Create (0.4ms)[0m [1m[32mINSERT INTO "spree_orders" ("number", "state", "created_at", "updated_at", "currency", "guest_token") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["number", "R578483955"], ["state", "cart"], ["created_at", "2019-08-22 07:26:46.985092"], ["updated_at", "2019-08-22 07:26:46.985092"], ["currency", "USD"], ["guest_token", "vcaOCA0Dg257uMvW8cYK5A"]]
|
|
997
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
998
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
|
999
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
1000
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
1001
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
1002
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1003
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
1004
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:26:46.991502"], ["updated_at", "2019-08-22 07:26:46.991502"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
1005
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1006
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1007
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1008
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
1009
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
1010
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
1011
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
1012
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1013
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
1014
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:26:46.999547"], ["updated_at", "2019-08-22 07:26:46.999547"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
1015
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1016
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1017
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1018
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
1019
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
1020
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
1021
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
|
1022
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1023
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
1024
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.4ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:26:47.008276"], ["updated_at", "2019-08-22 07:26:47.008276"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
1025
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1026
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1027
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1028
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
1029
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
1030
|
+
[1m[35m (0.2ms)[0m [1m[35mCOMMIT[0m
|
|
1031
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
1032
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1033
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
1034
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:26:47.046160"], ["updated_at", "2019-08-22 07:26:47.046160"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
1035
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1036
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1037
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1038
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
1039
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
1040
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
1041
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
1042
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1043
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
1044
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:26:47.054043"], ["updated_at", "2019-08-22 07:26:47.054043"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
1045
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1046
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1047
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1048
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
|
1049
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
1050
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
|
1051
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
|
1052
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1053
|
+
[1m[36mSpree::PaymentMethod Load (0.3ms)[0m [1m[34mSELECT "spree_payment_methods".* FROM "spree_payment_methods" WHERE (1 = 1) AND ("spree_payment_methods"."position" IS NOT NULL) ORDER BY "spree_payment_methods"."position" DESC LIMIT $1[0m [["LIMIT", 1]]
|
|
1054
|
+
[1m[36mSpree::PaymentMethod::BankTransfer Create (0.3ms)[0m [1m[32mINSERT INTO "spree_payment_methods" ("type", "name", "created_at", "updated_at", "preferences", "position") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["type", "Spree::PaymentMethod::BankTransfer"], ["name", "Bank Transfer"], ["created_at", "2019-08-22 07:26:47.062317"], ["updated_at", "2019-08-22 07:26:47.062317"], ["preferences", "---\n:server: test\n:test_mode: true\n:iban: \n:bank_name: \n:holder: \n"], ["position", 1]]
|
|
1055
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1056
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
|
1057
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
|
1058
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|