solidus_drip 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 +55 -0
- data/Rakefile +32 -0
- data/app/assets/javascripts/spree/frontend/solidus_drip.js.erb +11 -0
- data/app/decorators/models/solidus_drip/spree/order_decorator.rb +47 -0
- data/app/decorators/models/solidus_drip/spree/variant_decorator.rb +25 -0
- data/config/initializers/default_host.rb +9 -0
- data/config/initializers/update_hooks.rb +3 -0
- data/config/locales/en.yml +5 -0
- data/config/routes.rb +5 -0
- data/lib/generators/solidus_drip/install/install_generator.rb +28 -0
- data/lib/solidus_drip.rb +9 -0
- data/lib/solidus_drip/base.rb +31 -0
- data/lib/solidus_drip/engine.rb +22 -0
- data/lib/solidus_drip/factories.rb +8 -0
- data/lib/solidus_drip/shopper_activity.rb +6 -0
- data/lib/solidus_drip/shopper_activity/order.rb +138 -0
- data/lib/solidus_drip/shopper_activity/product.rb +54 -0
- data/lib/solidus_drip/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 +2 -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/javascript/channels/consumer.js +6 -0
- data/spec/dummy/app/javascript/channels/index.js +5 -0
- data/spec/dummy/app/javascript/packs/application.js +17 -0
- data/spec/dummy/app/jobs/application_job.rb +7 -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/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +36 -0
- data/spec/dummy/bin/yarn +11 -0
- data/spec/dummy/config.ru +5 -0
- data/spec/dummy/config/application.rb +59 -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 +12 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +62 -0
- data/spec/dummy/config/environments/production.rb +112 -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 +14 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/content_security_policy.rb +30 -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 +71 -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/20191101230305_create_active_storage_tables.active_storage.rb +27 -0
- data/spec/dummy/db/migrate/20191101230306_create_action_mailbox_tables.action_mailbox.rb +14 -0
- data/spec/dummy/db/migrate/20191101230307_create_action_text_tables.action_text.rb +14 -0
- data/spec/dummy/db/migrate/20191101230308_solidus_one_four.spree.rb +1103 -0
- data/spec/dummy/db/migrate/20191101230309_create_spree_wallet_payment_sources.spree.rb +28 -0
- data/spec/dummy/db/migrate/20191101230310_migrate_credit_cards_to_wallet_payment_sources.spree.rb +30 -0
- data/spec/dummy/db/migrate/20191101230311_remove_is_default_from_prices.spree.rb +8 -0
- data/spec/dummy/db/migrate/20191101230312_remove_currency_from_line_items.spree.rb +8 -0
- data/spec/dummy/db/migrate/20191101230313_add_available_to_columns_and_remove_display_on_from_payment_methods.spree.rb +31 -0
- data/spec/dummy/db/migrate/20191101230314_create_spree_promotion_code_batch.spree.rb +39 -0
- data/spec/dummy/db/migrate/20191101230315_add_available_to_users_and_remove_display_on_from_shipping_methods.spree.rb +23 -0
- data/spec/dummy/db/migrate/20191101230316_add_index_to_spree_payments_number.spree.rb +8 -0
- data/spec/dummy/db/migrate/20191101230317_remove_spree_store_credits_column.spree.rb +8 -0
- data/spec/dummy/db/migrate/20191101230318_add_lft_and_rgt_indexes_to_taxons.spree.rb +9 -0
- data/spec/dummy/db/migrate/20191101230319_remove_order_id_from_inventory_units.spree.rb +31 -0
- data/spec/dummy/db/migrate/20191101230320_transform_tax_rate_category_relation.spree.rb +51 -0
- data/spec/dummy/db/migrate/20191101230321_add_roles_unique_constraints.spree.rb +9 -0
- data/spec/dummy/db/migrate/20191101230322_add_time_range_to_tax_rate.spree.rb +9 -0
- data/spec/dummy/db/migrate/20191101230323_rename_bogus_gateways.spree.rb +19 -0
- data/spec/dummy/db/migrate/20191101230324_remove_default_tax_from_spree_zones.spree.rb +8 -0
- data/spec/dummy/db/migrate/20191101230325_create_promotion_rule_stores.spree.rb +13 -0
- data/spec/dummy/db/migrate/20191101230326_create_store_shipping_methods.spree.rb +13 -0
- data/spec/dummy/db/migrate/20191101230327_add_available_locales_to_stores.spree.rb +10 -0
- data/spec/dummy/db/migrate/20191101230328_add_amount_remaining_to_store_credit_events.spree.rb +62 -0
- data/spec/dummy/db/migrate/20191101230329_add_join_characters_to_promotion_code_batch.spree.rb +12 -0
- data/spec/dummy/db/migrate/20191101230330_create_spree_store_credit_reasons_table.spree.rb +56 -0
- data/spec/dummy/db/migrate/20191101230331_remove_code_from_spree_promotions.spree.rb +43 -0
- data/spec/dummy/db/migrate/20191101230332_drop_spree_store_credit_update_reasons.spree.rb +20 -0
- data/spec/dummy/db/migrate/20191101230333_add_api_key_to_spree_users.spree_api.rb +10 -0
- data/spec/dummy/db/migrate/20191101230334_resize_api_key_field.spree_api.rb +10 -0
- data/spec/dummy/db/migrate/20191101230335_rename_api_key_to_spree_api_key.spree_api.rb +10 -0
- data/spec/dummy/db/migrate/20191101230336_add_index_to_user_spree_api_key.spree_api.rb +10 -0
- data/spec/dummy/db/migrate/20191101230337_create_users.solidus_auth.rb +32 -0
- data/spec/dummy/db/migrate/20191101230338_rename_columns_for_devise.solidus_auth.rb +40 -0
- data/spec/dummy/db/migrate/20191101230339_convert_user_remember_field.solidus_auth.rb +14 -0
- data/spec/dummy/db/migrate/20191101230340_add_reset_password_sent_at_to_spree_users.solidus_auth.rb +11 -0
- data/spec/dummy/db/migrate/20191101230341_make_users_email_index_unique.solidus_auth.rb +12 -0
- data/spec/dummy/db/migrate/20191101230342_add_deleted_at_to_users.solidus_auth.rb +9 -0
- data/spec/dummy/db/migrate/20191101230343_add_confirmable_to_users.solidus_auth.rb +10 -0
- data/spec/dummy/db/migrate/20191101230344_add_reset_password_token_index_to_spree_users.solidus_auth.rb +35 -0
- data/spec/dummy/db/schema.rb +1211 -0
- data/spec/dummy/db/seeds.rb +10 -0
- data/spec/dummy/db/solidus_test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +12695 -0
- data/spec/dummy/package.json +11 -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/order_spec.rb +45 -0
- data/spec/models/variant_spec.rb +27 -0
- data/spec/spec_helper.rb +34 -0
- data/spec/support/stub_drip_responses.rb +13 -0
- metadata +495 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# This migration comes from action_mailbox (originally 20180917164000)
|
|
2
|
+
class CreateActionMailboxTables < ActiveRecord::Migration[6.0]
|
|
3
|
+
def change
|
|
4
|
+
create_table :action_mailbox_inbound_emails do |t|
|
|
5
|
+
t.integer :status, default: 0, null: false
|
|
6
|
+
t.string :message_id, null: false
|
|
7
|
+
t.string :message_checksum, null: false
|
|
8
|
+
|
|
9
|
+
t.timestamps
|
|
10
|
+
|
|
11
|
+
t.index [ :message_id, :message_checksum ], name: "index_action_mailbox_inbound_emails_uniqueness", unique: true
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# This migration comes from action_text (originally 20180528164100)
|
|
2
|
+
class CreateActionTextTables < ActiveRecord::Migration[6.0]
|
|
3
|
+
def change
|
|
4
|
+
create_table :action_text_rich_texts do |t|
|
|
5
|
+
t.string :name, null: false
|
|
6
|
+
t.text :body, size: :long
|
|
7
|
+
t.references :record, null: false, polymorphic: true, index: false
|
|
8
|
+
|
|
9
|
+
t.timestamps
|
|
10
|
+
|
|
11
|
+
t.index [ :record_type, :record_id, :name ], name: "index_action_text_rich_texts_uniqueness", unique: true
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
@@ -0,0 +1,1103 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# This migration comes from spree (originally 20160101010000)
|
|
3
|
+
|
|
4
|
+
class SolidusOneFour < ActiveRecord::Migration[5.0]
|
|
5
|
+
def up
|
|
6
|
+
# This migration is just a compressed version of all the previous
|
|
7
|
+
# migrations for spree_core. Do not run it if one of the core tables
|
|
8
|
+
# already exists. Assume the best.
|
|
9
|
+
return if table_exists?(:spree_addresses)
|
|
10
|
+
|
|
11
|
+
# this table should not technically exist in the database (as its provided by auth_devise),
|
|
12
|
+
# but spree_api depends on it existing. This defininition comes from solidus_auth_devise's first migration,
|
|
13
|
+
# and creates a table equivolent to it
|
|
14
|
+
create_table "spree_users", force: true do |t|
|
|
15
|
+
t.string "crypted_password", limit: 128
|
|
16
|
+
t.string "salt", limit: 128
|
|
17
|
+
t.string "email"
|
|
18
|
+
t.string "remember_token"
|
|
19
|
+
t.string "remember_token_expires_at"
|
|
20
|
+
t.string "persistence_token"
|
|
21
|
+
t.string "single_access_token"
|
|
22
|
+
t.string "perishable_token"
|
|
23
|
+
t.integer "login_count", default: 0, null: false
|
|
24
|
+
t.integer "failed_login_count", default: 0, null: false
|
|
25
|
+
t.datetime "last_request_at"
|
|
26
|
+
t.datetime "current_login_at"
|
|
27
|
+
t.datetime "last_login_at"
|
|
28
|
+
t.string "current_login_ip"
|
|
29
|
+
t.string "last_login_ip"
|
|
30
|
+
t.string "login"
|
|
31
|
+
t.integer "ship_address_id"
|
|
32
|
+
t.integer "bill_address_id"
|
|
33
|
+
t.datetime "created_at", null: false, precision: 6
|
|
34
|
+
t.datetime "updated_at", null: false, precision: 6
|
|
35
|
+
t.string "openid_identifier"
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
create_table "friendly_id_slugs", force: :cascade do |t|
|
|
39
|
+
t.string "slug", null: false
|
|
40
|
+
t.integer "sluggable_id", null: false
|
|
41
|
+
t.string "sluggable_type", limit: 50
|
|
42
|
+
t.string "scope"
|
|
43
|
+
t.datetime "created_at", precision: 6
|
|
44
|
+
t.datetime "updated_at", precision: 6
|
|
45
|
+
t.index ["slug", "sluggable_type", "scope"], name: "index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope", unique: true
|
|
46
|
+
t.index ["slug", "sluggable_type"], name: "index_friendly_id_slugs_on_slug_and_sluggable_type"
|
|
47
|
+
t.index ["sluggable_id"], name: "index_friendly_id_slugs_on_sluggable_id"
|
|
48
|
+
t.index ["sluggable_type"], name: "index_friendly_id_slugs_on_sluggable_type"
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
create_table "spree_addresses", force: :cascade do |t|
|
|
52
|
+
t.string "firstname"
|
|
53
|
+
t.string "lastname"
|
|
54
|
+
t.string "address1"
|
|
55
|
+
t.string "address2"
|
|
56
|
+
t.string "city"
|
|
57
|
+
t.string "zipcode"
|
|
58
|
+
t.string "phone"
|
|
59
|
+
t.string "state_name"
|
|
60
|
+
t.string "alternative_phone"
|
|
61
|
+
t.string "company"
|
|
62
|
+
t.integer "state_id"
|
|
63
|
+
t.integer "country_id"
|
|
64
|
+
t.datetime "created_at", precision: 6
|
|
65
|
+
t.datetime "updated_at", precision: 6
|
|
66
|
+
t.index ["country_id"], name: "index_spree_addresses_on_country_id"
|
|
67
|
+
t.index ["firstname"], name: "index_addresses_on_firstname"
|
|
68
|
+
t.index ["lastname"], name: "index_addresses_on_lastname"
|
|
69
|
+
t.index ["state_id"], name: "index_spree_addresses_on_state_id"
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
create_table "spree_adjustment_reasons", force: :cascade do |t|
|
|
73
|
+
t.string "name"
|
|
74
|
+
t.string "code"
|
|
75
|
+
t.boolean "active", default: true
|
|
76
|
+
t.datetime "created_at", precision: 6
|
|
77
|
+
t.datetime "updated_at", precision: 6
|
|
78
|
+
t.index ["active"], name: "index_spree_adjustment_reasons_on_active"
|
|
79
|
+
t.index ["code"], name: "index_spree_adjustment_reasons_on_code"
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
create_table "spree_adjustments", force: :cascade do |t|
|
|
83
|
+
t.string "source_type"
|
|
84
|
+
t.integer "source_id"
|
|
85
|
+
t.string "adjustable_type"
|
|
86
|
+
t.integer "adjustable_id", null: false
|
|
87
|
+
t.decimal "amount", precision: 10, scale: 2
|
|
88
|
+
t.string "label"
|
|
89
|
+
t.boolean "eligible", default: true
|
|
90
|
+
t.datetime "created_at", precision: 6
|
|
91
|
+
t.datetime "updated_at", precision: 6
|
|
92
|
+
t.integer "order_id", null: false
|
|
93
|
+
t.boolean "included", default: false
|
|
94
|
+
t.integer "promotion_code_id"
|
|
95
|
+
t.integer "adjustment_reason_id"
|
|
96
|
+
t.boolean "finalized", default: false, null: false
|
|
97
|
+
t.index ["adjustable_id", "adjustable_type"], name: "index_spree_adjustments_on_adjustable_id_and_adjustable_type"
|
|
98
|
+
t.index ["adjustable_id"], name: "index_adjustments_on_order_id"
|
|
99
|
+
t.index ["eligible"], name: "index_spree_adjustments_on_eligible"
|
|
100
|
+
t.index ["order_id"], name: "index_spree_adjustments_on_order_id"
|
|
101
|
+
t.index ["promotion_code_id"], name: "index_spree_adjustments_on_promotion_code_id"
|
|
102
|
+
t.index ["source_id", "source_type"], name: "index_spree_adjustments_on_source_id_and_source_type"
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
create_table "spree_assets", force: :cascade do |t|
|
|
106
|
+
t.string "viewable_type"
|
|
107
|
+
t.integer "viewable_id"
|
|
108
|
+
t.integer "attachment_width"
|
|
109
|
+
t.integer "attachment_height"
|
|
110
|
+
t.integer "attachment_file_size"
|
|
111
|
+
t.integer "position"
|
|
112
|
+
t.string "attachment_content_type"
|
|
113
|
+
t.string "attachment_file_name"
|
|
114
|
+
t.string "type", limit: 75
|
|
115
|
+
t.datetime "attachment_updated_at"
|
|
116
|
+
t.text "alt"
|
|
117
|
+
t.datetime "created_at", precision: 6
|
|
118
|
+
t.datetime "updated_at", precision: 6
|
|
119
|
+
t.index ["viewable_id"], name: "index_assets_on_viewable_id"
|
|
120
|
+
t.index ["viewable_type", "type"], name: "index_assets_on_viewable_type_and_type"
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
create_table "spree_calculators", force: :cascade do |t|
|
|
124
|
+
t.string "type"
|
|
125
|
+
t.string "calculable_type"
|
|
126
|
+
t.integer "calculable_id"
|
|
127
|
+
t.datetime "created_at", precision: 6
|
|
128
|
+
t.datetime "updated_at", precision: 6
|
|
129
|
+
t.text "preferences"
|
|
130
|
+
t.index ["calculable_id", "calculable_type"], name: "index_spree_calculators_on_calculable_id_and_calculable_type"
|
|
131
|
+
t.index ["id", "type"], name: "index_spree_calculators_on_id_and_type"
|
|
132
|
+
end
|
|
133
|
+
|
|
134
|
+
create_table "spree_cartons", force: :cascade do |t|
|
|
135
|
+
t.string "number"
|
|
136
|
+
t.string "external_number"
|
|
137
|
+
t.integer "stock_location_id"
|
|
138
|
+
t.integer "address_id"
|
|
139
|
+
t.integer "shipping_method_id"
|
|
140
|
+
t.string "tracking"
|
|
141
|
+
t.datetime "shipped_at"
|
|
142
|
+
t.datetime "created_at", precision: 6
|
|
143
|
+
t.datetime "updated_at", precision: 6
|
|
144
|
+
t.integer "imported_from_shipment_id"
|
|
145
|
+
t.index ["external_number"], name: "index_spree_cartons_on_external_number"
|
|
146
|
+
t.index ["imported_from_shipment_id"], name: "index_spree_cartons_on_imported_from_shipment_id", unique: true
|
|
147
|
+
t.index ["number"], name: "index_spree_cartons_on_number", unique: true
|
|
148
|
+
t.index ["stock_location_id"], name: "index_spree_cartons_on_stock_location_id"
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
create_table "spree_countries", force: :cascade do |t|
|
|
152
|
+
t.string "iso_name"
|
|
153
|
+
t.string "iso"
|
|
154
|
+
t.string "iso3"
|
|
155
|
+
t.string "name"
|
|
156
|
+
t.integer "numcode"
|
|
157
|
+
t.boolean "states_required", default: false
|
|
158
|
+
t.datetime "updated_at", precision: 6
|
|
159
|
+
t.datetime "created_at", precision: 6
|
|
160
|
+
t.index ["iso"], name: "index_spree_countries_on_iso"
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
create_table "spree_credit_cards", force: :cascade do |t|
|
|
164
|
+
t.string "month"
|
|
165
|
+
t.string "year"
|
|
166
|
+
t.string "cc_type"
|
|
167
|
+
t.string "last_digits"
|
|
168
|
+
t.string "gateway_customer_profile_id"
|
|
169
|
+
t.string "gateway_payment_profile_id"
|
|
170
|
+
t.datetime "created_at", precision: 6
|
|
171
|
+
t.datetime "updated_at", precision: 6
|
|
172
|
+
t.string "name"
|
|
173
|
+
t.integer "user_id"
|
|
174
|
+
t.integer "payment_method_id"
|
|
175
|
+
t.boolean "default", default: false, null: false
|
|
176
|
+
t.integer "address_id"
|
|
177
|
+
t.index ["payment_method_id"], name: "index_spree_credit_cards_on_payment_method_id"
|
|
178
|
+
t.index ["user_id"], name: "index_spree_credit_cards_on_user_id"
|
|
179
|
+
end
|
|
180
|
+
|
|
181
|
+
create_table "spree_customer_returns", force: :cascade do |t|
|
|
182
|
+
t.string "number"
|
|
183
|
+
t.integer "stock_location_id"
|
|
184
|
+
t.datetime "created_at", precision: 6
|
|
185
|
+
t.datetime "updated_at", precision: 6
|
|
186
|
+
end
|
|
187
|
+
|
|
188
|
+
create_table "spree_inventory_units", force: :cascade do |t|
|
|
189
|
+
t.string "state"
|
|
190
|
+
t.integer "variant_id"
|
|
191
|
+
t.integer "order_id"
|
|
192
|
+
t.integer "shipment_id"
|
|
193
|
+
t.datetime "created_at", precision: 6
|
|
194
|
+
t.datetime "updated_at", precision: 6
|
|
195
|
+
t.boolean "pending", default: true
|
|
196
|
+
t.integer "line_item_id"
|
|
197
|
+
t.integer "carton_id"
|
|
198
|
+
t.index ["carton_id"], name: "index_spree_inventory_units_on_carton_id"
|
|
199
|
+
t.index ["line_item_id"], name: "index_spree_inventory_units_on_line_item_id"
|
|
200
|
+
t.index ["order_id"], name: "index_inventory_units_on_order_id"
|
|
201
|
+
t.index ["shipment_id"], name: "index_inventory_units_on_shipment_id"
|
|
202
|
+
t.index ["variant_id"], name: "index_inventory_units_on_variant_id"
|
|
203
|
+
end
|
|
204
|
+
|
|
205
|
+
create_table "spree_line_item_actions", force: :cascade do |t|
|
|
206
|
+
t.integer "line_item_id", null: false
|
|
207
|
+
t.integer "action_id", null: false
|
|
208
|
+
t.integer "quantity", default: 0
|
|
209
|
+
t.datetime "created_at", precision: 6
|
|
210
|
+
t.datetime "updated_at", precision: 6
|
|
211
|
+
t.index ["action_id"], name: "index_spree_line_item_actions_on_action_id"
|
|
212
|
+
t.index ["line_item_id"], name: "index_spree_line_item_actions_on_line_item_id"
|
|
213
|
+
end
|
|
214
|
+
|
|
215
|
+
create_table "spree_line_items", force: :cascade do |t|
|
|
216
|
+
t.integer "variant_id"
|
|
217
|
+
t.integer "order_id"
|
|
218
|
+
t.integer "quantity", null: false
|
|
219
|
+
t.decimal "price", precision: 10, scale: 2, null: false
|
|
220
|
+
t.datetime "created_at", precision: 6
|
|
221
|
+
t.datetime "updated_at", precision: 6
|
|
222
|
+
t.string "currency"
|
|
223
|
+
t.decimal "cost_price", precision: 10, scale: 2
|
|
224
|
+
t.integer "tax_category_id"
|
|
225
|
+
t.decimal "adjustment_total", precision: 10, scale: 2, default: "0.0"
|
|
226
|
+
t.decimal "additional_tax_total", precision: 10, scale: 2, default: "0.0"
|
|
227
|
+
t.decimal "promo_total", precision: 10, scale: 2, default: "0.0"
|
|
228
|
+
t.decimal "included_tax_total", precision: 10, scale: 2, default: "0.0", null: false
|
|
229
|
+
t.index ["order_id"], name: "index_spree_line_items_on_order_id"
|
|
230
|
+
t.index ["variant_id"], name: "index_spree_line_items_on_variant_id"
|
|
231
|
+
end
|
|
232
|
+
|
|
233
|
+
create_table "spree_log_entries", force: :cascade do |t|
|
|
234
|
+
t.string "source_type"
|
|
235
|
+
t.integer "source_id"
|
|
236
|
+
t.text "details"
|
|
237
|
+
t.datetime "created_at", precision: 6
|
|
238
|
+
t.datetime "updated_at", precision: 6
|
|
239
|
+
t.index ["source_id", "source_type"], name: "index_spree_log_entries_on_source_id_and_source_type"
|
|
240
|
+
end
|
|
241
|
+
|
|
242
|
+
create_table "spree_option_type_prototypes", force: :cascade do |t|
|
|
243
|
+
t.integer "prototype_id"
|
|
244
|
+
t.integer "option_type_id"
|
|
245
|
+
t.datetime "created_at", precision: 6
|
|
246
|
+
t.datetime "updated_at", precision: 6
|
|
247
|
+
end
|
|
248
|
+
|
|
249
|
+
create_table "spree_option_types", force: :cascade do |t|
|
|
250
|
+
t.string "name", limit: 100
|
|
251
|
+
t.string "presentation", limit: 100
|
|
252
|
+
t.integer "position", default: 0, null: false
|
|
253
|
+
t.datetime "created_at", precision: 6
|
|
254
|
+
t.datetime "updated_at", precision: 6
|
|
255
|
+
t.index ["position"], name: "index_spree_option_types_on_position"
|
|
256
|
+
end
|
|
257
|
+
|
|
258
|
+
create_table "spree_option_values", force: :cascade do |t|
|
|
259
|
+
t.integer "position"
|
|
260
|
+
t.string "name"
|
|
261
|
+
t.string "presentation"
|
|
262
|
+
t.integer "option_type_id"
|
|
263
|
+
t.datetime "created_at", precision: 6
|
|
264
|
+
t.datetime "updated_at", precision: 6
|
|
265
|
+
t.index ["option_type_id"], name: "index_spree_option_values_on_option_type_id"
|
|
266
|
+
t.index ["position"], name: "index_spree_option_values_on_position"
|
|
267
|
+
end
|
|
268
|
+
|
|
269
|
+
create_table "spree_option_values_variants", force: :cascade do |t|
|
|
270
|
+
t.integer "variant_id"
|
|
271
|
+
t.integer "option_value_id"
|
|
272
|
+
t.datetime "created_at", precision: 6
|
|
273
|
+
t.datetime "updated_at", precision: 6
|
|
274
|
+
t.index ["variant_id", "option_value_id"], name: "index_option_values_variants_on_variant_id_and_option_value_id"
|
|
275
|
+
t.index ["variant_id"], name: "index_spree_option_values_variants_on_variant_id"
|
|
276
|
+
end
|
|
277
|
+
|
|
278
|
+
create_table "spree_order_mutexes", force: :cascade do |t|
|
|
279
|
+
t.integer "order_id", null: false
|
|
280
|
+
t.datetime "created_at", precision: 6
|
|
281
|
+
t.index ["order_id"], name: "index_spree_order_mutexes_on_order_id", unique: true
|
|
282
|
+
end
|
|
283
|
+
|
|
284
|
+
create_table "spree_orders", force: :cascade do |t|
|
|
285
|
+
t.string "number", limit: 32
|
|
286
|
+
t.decimal "item_total", precision: 10, scale: 2, default: "0.0", null: false
|
|
287
|
+
t.decimal "total", precision: 10, scale: 2, default: "0.0", null: false
|
|
288
|
+
t.string "state"
|
|
289
|
+
t.decimal "adjustment_total", precision: 10, scale: 2, default: "0.0", null: false
|
|
290
|
+
t.integer "user_id"
|
|
291
|
+
t.datetime "completed_at"
|
|
292
|
+
t.integer "bill_address_id"
|
|
293
|
+
t.integer "ship_address_id"
|
|
294
|
+
t.decimal "payment_total", precision: 10, scale: 2, default: "0.0"
|
|
295
|
+
t.string "shipment_state"
|
|
296
|
+
t.string "payment_state"
|
|
297
|
+
t.string "email"
|
|
298
|
+
t.text "special_instructions"
|
|
299
|
+
t.datetime "created_at", precision: 6
|
|
300
|
+
t.datetime "updated_at", precision: 6
|
|
301
|
+
t.string "currency"
|
|
302
|
+
t.string "last_ip_address"
|
|
303
|
+
t.integer "created_by_id"
|
|
304
|
+
t.decimal "shipment_total", precision: 10, scale: 2, default: "0.0", null: false
|
|
305
|
+
t.decimal "additional_tax_total", precision: 10, scale: 2, default: "0.0"
|
|
306
|
+
t.decimal "promo_total", precision: 10, scale: 2, default: "0.0"
|
|
307
|
+
t.string "channel", default: "spree"
|
|
308
|
+
t.decimal "included_tax_total", precision: 10, scale: 2, default: "0.0", null: false
|
|
309
|
+
t.integer "item_count", default: 0
|
|
310
|
+
t.integer "approver_id"
|
|
311
|
+
t.datetime "approved_at"
|
|
312
|
+
t.boolean "confirmation_delivered", default: false
|
|
313
|
+
t.string "guest_token"
|
|
314
|
+
t.datetime "canceled_at"
|
|
315
|
+
t.integer "canceler_id"
|
|
316
|
+
t.integer "store_id"
|
|
317
|
+
t.string "approver_name"
|
|
318
|
+
t.boolean "frontend_viewable", default: true, null: false
|
|
319
|
+
t.index ["approver_id"], name: "index_spree_orders_on_approver_id"
|
|
320
|
+
t.index ["bill_address_id"], name: "index_spree_orders_on_bill_address_id"
|
|
321
|
+
t.index ["completed_at"], name: "index_spree_orders_on_completed_at"
|
|
322
|
+
t.index ["created_by_id"], name: "index_spree_orders_on_created_by_id"
|
|
323
|
+
t.index ["guest_token"], name: "index_spree_orders_on_guest_token"
|
|
324
|
+
t.index ["number"], name: "index_spree_orders_on_number"
|
|
325
|
+
t.index ["ship_address_id"], name: "index_spree_orders_on_ship_address_id"
|
|
326
|
+
t.index ["user_id", "created_by_id"], name: "index_spree_orders_on_user_id_and_created_by_id"
|
|
327
|
+
t.index ["user_id"], name: "index_spree_orders_on_user_id"
|
|
328
|
+
end
|
|
329
|
+
|
|
330
|
+
create_table "spree_orders_promotions", force: :cascade do |t|
|
|
331
|
+
t.integer "order_id"
|
|
332
|
+
t.integer "promotion_id"
|
|
333
|
+
t.integer "promotion_code_id"
|
|
334
|
+
t.datetime "created_at", precision: 6
|
|
335
|
+
t.datetime "updated_at", precision: 6
|
|
336
|
+
t.index ["order_id", "promotion_id"], name: "index_spree_orders_promotions_on_order_id_and_promotion_id"
|
|
337
|
+
t.index ["promotion_code_id"], name: "index_spree_orders_promotions_on_promotion_code_id"
|
|
338
|
+
end
|
|
339
|
+
|
|
340
|
+
create_table "spree_payment_capture_events", force: :cascade do |t|
|
|
341
|
+
t.decimal "amount", precision: 10, scale: 2, default: "0.0"
|
|
342
|
+
t.integer "payment_id"
|
|
343
|
+
t.datetime "created_at", precision: 6
|
|
344
|
+
t.datetime "updated_at", precision: 6
|
|
345
|
+
t.index ["payment_id"], name: "index_spree_payment_capture_events_on_payment_id"
|
|
346
|
+
end
|
|
347
|
+
|
|
348
|
+
create_table "spree_payment_methods", force: :cascade do |t|
|
|
349
|
+
t.string "type"
|
|
350
|
+
t.string "name"
|
|
351
|
+
t.text "description"
|
|
352
|
+
t.boolean "active", default: true
|
|
353
|
+
t.datetime "deleted_at"
|
|
354
|
+
t.datetime "created_at", precision: 6
|
|
355
|
+
t.datetime "updated_at", precision: 6
|
|
356
|
+
t.string "display_on"
|
|
357
|
+
t.boolean "auto_capture"
|
|
358
|
+
t.text "preferences"
|
|
359
|
+
t.string "preference_source"
|
|
360
|
+
t.integer "position", default: 0
|
|
361
|
+
t.index ["id", "type"], name: "index_spree_payment_methods_on_id_and_type"
|
|
362
|
+
end
|
|
363
|
+
|
|
364
|
+
create_table "spree_payments", force: :cascade do |t|
|
|
365
|
+
t.decimal "amount", precision: 10, scale: 2, default: "0.0", null: false
|
|
366
|
+
t.integer "order_id"
|
|
367
|
+
t.string "source_type"
|
|
368
|
+
t.integer "source_id"
|
|
369
|
+
t.integer "payment_method_id"
|
|
370
|
+
t.string "state"
|
|
371
|
+
t.string "response_code"
|
|
372
|
+
t.string "avs_response"
|
|
373
|
+
t.datetime "created_at", precision: 6
|
|
374
|
+
t.datetime "updated_at", precision: 6
|
|
375
|
+
t.string "number"
|
|
376
|
+
t.string "cvv_response_code"
|
|
377
|
+
t.string "cvv_response_message"
|
|
378
|
+
t.index ["order_id"], name: "index_spree_payments_on_order_id"
|
|
379
|
+
t.index ["payment_method_id"], name: "index_spree_payments_on_payment_method_id"
|
|
380
|
+
t.index ["source_id", "source_type"], name: "index_spree_payments_on_source_id_and_source_type"
|
|
381
|
+
end
|
|
382
|
+
|
|
383
|
+
create_table "spree_preferences", force: :cascade do |t|
|
|
384
|
+
t.text "value"
|
|
385
|
+
t.string "key"
|
|
386
|
+
t.datetime "created_at", precision: 6
|
|
387
|
+
t.datetime "updated_at", precision: 6
|
|
388
|
+
t.index ["key"], name: "index_spree_preferences_on_key", unique: true
|
|
389
|
+
end
|
|
390
|
+
|
|
391
|
+
create_table "spree_prices", force: :cascade do |t|
|
|
392
|
+
t.integer "variant_id", null: false
|
|
393
|
+
t.decimal "amount", precision: 10, scale: 2
|
|
394
|
+
t.string "currency"
|
|
395
|
+
t.datetime "deleted_at"
|
|
396
|
+
t.boolean "is_default", default: true, null: false
|
|
397
|
+
t.datetime "created_at", precision: 6
|
|
398
|
+
t.datetime "updated_at", precision: 6
|
|
399
|
+
t.string "country_iso", limit: 2
|
|
400
|
+
t.index ["country_iso"], name: "index_spree_prices_on_country_iso"
|
|
401
|
+
t.index ["variant_id", "currency"], name: "index_spree_prices_on_variant_id_and_currency"
|
|
402
|
+
end
|
|
403
|
+
|
|
404
|
+
create_table "spree_product_option_types", force: :cascade do |t|
|
|
405
|
+
t.integer "position"
|
|
406
|
+
t.integer "product_id"
|
|
407
|
+
t.integer "option_type_id"
|
|
408
|
+
t.datetime "created_at", precision: 6
|
|
409
|
+
t.datetime "updated_at", precision: 6
|
|
410
|
+
t.index ["option_type_id"], name: "index_spree_product_option_types_on_option_type_id"
|
|
411
|
+
t.index ["position"], name: "index_spree_product_option_types_on_position"
|
|
412
|
+
t.index ["product_id"], name: "index_spree_product_option_types_on_product_id"
|
|
413
|
+
end
|
|
414
|
+
|
|
415
|
+
create_table "spree_product_promotion_rules", force: :cascade do |t|
|
|
416
|
+
t.integer "product_id"
|
|
417
|
+
t.integer "promotion_rule_id"
|
|
418
|
+
t.datetime "created_at", precision: 6
|
|
419
|
+
t.datetime "updated_at", precision: 6
|
|
420
|
+
t.index ["product_id"], name: "index_products_promotion_rules_on_product_id"
|
|
421
|
+
t.index ["promotion_rule_id"], name: "index_products_promotion_rules_on_promotion_rule_id"
|
|
422
|
+
end
|
|
423
|
+
|
|
424
|
+
create_table "spree_product_properties", force: :cascade do |t|
|
|
425
|
+
t.string "value"
|
|
426
|
+
t.integer "product_id"
|
|
427
|
+
t.integer "property_id"
|
|
428
|
+
t.datetime "created_at", precision: 6
|
|
429
|
+
t.datetime "updated_at", precision: 6
|
|
430
|
+
t.integer "position", default: 0
|
|
431
|
+
t.index ["position"], name: "index_spree_product_properties_on_position"
|
|
432
|
+
t.index ["product_id"], name: "index_product_properties_on_product_id"
|
|
433
|
+
t.index ["property_id"], name: "index_spree_product_properties_on_property_id"
|
|
434
|
+
end
|
|
435
|
+
|
|
436
|
+
create_table "spree_products", force: :cascade do |t|
|
|
437
|
+
t.string "name", default: "", null: false
|
|
438
|
+
t.text "description"
|
|
439
|
+
t.datetime "available_on"
|
|
440
|
+
t.datetime "deleted_at"
|
|
441
|
+
t.string "slug"
|
|
442
|
+
t.text "meta_description"
|
|
443
|
+
t.string "meta_keywords"
|
|
444
|
+
t.integer "tax_category_id"
|
|
445
|
+
t.integer "shipping_category_id"
|
|
446
|
+
t.datetime "created_at", precision: 6
|
|
447
|
+
t.datetime "updated_at", precision: 6
|
|
448
|
+
t.boolean "promotionable", default: true
|
|
449
|
+
t.string "meta_title"
|
|
450
|
+
t.index ["available_on"], name: "index_spree_products_on_available_on"
|
|
451
|
+
t.index ["deleted_at"], name: "index_spree_products_on_deleted_at"
|
|
452
|
+
t.index ["name"], name: "index_spree_products_on_name"
|
|
453
|
+
t.index ["slug"], name: "index_spree_products_on_slug", unique: true
|
|
454
|
+
end
|
|
455
|
+
|
|
456
|
+
create_table "spree_products_taxons", force: :cascade do |t|
|
|
457
|
+
t.integer "product_id"
|
|
458
|
+
t.integer "taxon_id"
|
|
459
|
+
t.integer "position"
|
|
460
|
+
t.datetime "created_at", precision: 6
|
|
461
|
+
t.datetime "updated_at", precision: 6
|
|
462
|
+
t.index ["position"], name: "index_spree_products_taxons_on_position"
|
|
463
|
+
t.index ["product_id"], name: "index_spree_products_taxons_on_product_id"
|
|
464
|
+
t.index ["taxon_id"], name: "index_spree_products_taxons_on_taxon_id"
|
|
465
|
+
end
|
|
466
|
+
|
|
467
|
+
create_table "spree_promotion_action_line_items", force: :cascade do |t|
|
|
468
|
+
t.integer "promotion_action_id"
|
|
469
|
+
t.integer "variant_id"
|
|
470
|
+
t.integer "quantity", default: 1
|
|
471
|
+
t.datetime "created_at", precision: 6
|
|
472
|
+
t.datetime "updated_at", precision: 6
|
|
473
|
+
t.index ["promotion_action_id"], name: "index_spree_promotion_action_line_items_on_promotion_action_id"
|
|
474
|
+
t.index ["variant_id"], name: "index_spree_promotion_action_line_items_on_variant_id"
|
|
475
|
+
end
|
|
476
|
+
|
|
477
|
+
create_table "spree_promotion_actions", force: :cascade do |t|
|
|
478
|
+
t.integer "promotion_id"
|
|
479
|
+
t.integer "position"
|
|
480
|
+
t.string "type"
|
|
481
|
+
t.datetime "deleted_at"
|
|
482
|
+
t.text "preferences"
|
|
483
|
+
t.datetime "created_at", precision: 6
|
|
484
|
+
t.datetime "updated_at", precision: 6
|
|
485
|
+
t.index ["deleted_at"], name: "index_spree_promotion_actions_on_deleted_at"
|
|
486
|
+
t.index ["id", "type"], name: "index_spree_promotion_actions_on_id_and_type"
|
|
487
|
+
t.index ["promotion_id"], name: "index_spree_promotion_actions_on_promotion_id"
|
|
488
|
+
end
|
|
489
|
+
|
|
490
|
+
create_table "spree_promotion_categories", force: :cascade do |t|
|
|
491
|
+
t.string "name"
|
|
492
|
+
t.datetime "created_at", precision: 6
|
|
493
|
+
t.datetime "updated_at", precision: 6
|
|
494
|
+
t.string "code"
|
|
495
|
+
end
|
|
496
|
+
|
|
497
|
+
create_table "spree_promotion_codes", force: :cascade do |t|
|
|
498
|
+
t.integer "promotion_id", null: false
|
|
499
|
+
t.string "value", null: false
|
|
500
|
+
t.datetime "created_at", precision: 6
|
|
501
|
+
t.datetime "updated_at", precision: 6
|
|
502
|
+
t.index ["promotion_id"], name: "index_spree_promotion_codes_on_promotion_id"
|
|
503
|
+
t.index ["value"], name: "index_spree_promotion_codes_on_value", unique: true
|
|
504
|
+
end
|
|
505
|
+
|
|
506
|
+
create_table "spree_promotion_rule_taxons", force: :cascade do |t|
|
|
507
|
+
t.integer "taxon_id"
|
|
508
|
+
t.integer "promotion_rule_id"
|
|
509
|
+
t.datetime "created_at", precision: 6
|
|
510
|
+
t.datetime "updated_at", precision: 6
|
|
511
|
+
t.index ["promotion_rule_id"], name: "index_spree_promotion_rule_taxons_on_promotion_rule_id"
|
|
512
|
+
t.index ["taxon_id"], name: "index_spree_promotion_rule_taxons_on_taxon_id"
|
|
513
|
+
end
|
|
514
|
+
|
|
515
|
+
create_table "spree_promotion_rules", force: :cascade do |t|
|
|
516
|
+
t.integer "promotion_id"
|
|
517
|
+
t.integer "product_group_id"
|
|
518
|
+
t.string "type"
|
|
519
|
+
t.datetime "created_at", precision: 6
|
|
520
|
+
t.datetime "updated_at", precision: 6
|
|
521
|
+
t.string "code"
|
|
522
|
+
t.text "preferences"
|
|
523
|
+
t.index ["product_group_id"], name: "index_promotion_rules_on_product_group_id"
|
|
524
|
+
t.index ["promotion_id"], name: "index_spree_promotion_rules_on_promotion_id"
|
|
525
|
+
end
|
|
526
|
+
|
|
527
|
+
create_table "spree_promotion_rules_users", force: :cascade do |t|
|
|
528
|
+
t.integer "user_id"
|
|
529
|
+
t.integer "promotion_rule_id"
|
|
530
|
+
t.datetime "created_at", precision: 6
|
|
531
|
+
t.datetime "updated_at", precision: 6
|
|
532
|
+
t.index ["promotion_rule_id"], name: "index_promotion_rules_users_on_promotion_rule_id"
|
|
533
|
+
t.index ["user_id"], name: "index_promotion_rules_users_on_user_id"
|
|
534
|
+
end
|
|
535
|
+
|
|
536
|
+
create_table "spree_promotions", force: :cascade do |t|
|
|
537
|
+
t.string "description"
|
|
538
|
+
t.datetime "expires_at"
|
|
539
|
+
t.datetime "starts_at"
|
|
540
|
+
t.string "name"
|
|
541
|
+
t.string "type"
|
|
542
|
+
t.integer "usage_limit"
|
|
543
|
+
t.string "match_policy", default: "all"
|
|
544
|
+
t.string "code"
|
|
545
|
+
t.boolean "advertise", default: false
|
|
546
|
+
t.string "path"
|
|
547
|
+
t.datetime "created_at", precision: 6
|
|
548
|
+
t.datetime "updated_at", precision: 6
|
|
549
|
+
t.integer "promotion_category_id"
|
|
550
|
+
t.integer "per_code_usage_limit"
|
|
551
|
+
t.boolean "apply_automatically", default: false
|
|
552
|
+
t.index ["advertise"], name: "index_spree_promotions_on_advertise"
|
|
553
|
+
t.index ["apply_automatically"], name: "index_spree_promotions_on_apply_automatically"
|
|
554
|
+
t.index ["code"], name: "index_spree_promotions_on_code"
|
|
555
|
+
t.index ["expires_at"], name: "index_spree_promotions_on_expires_at"
|
|
556
|
+
t.index ["id", "type"], name: "index_spree_promotions_on_id_and_type"
|
|
557
|
+
t.index ["promotion_category_id"], name: "index_spree_promotions_on_promotion_category_id"
|
|
558
|
+
t.index ["starts_at"], name: "index_spree_promotions_on_starts_at"
|
|
559
|
+
end
|
|
560
|
+
|
|
561
|
+
create_table "spree_properties", force: :cascade do |t|
|
|
562
|
+
t.string "name"
|
|
563
|
+
t.string "presentation", null: false
|
|
564
|
+
t.datetime "created_at", precision: 6
|
|
565
|
+
t.datetime "updated_at", precision: 6
|
|
566
|
+
end
|
|
567
|
+
|
|
568
|
+
create_table "spree_property_prototypes", force: :cascade do |t|
|
|
569
|
+
t.integer "prototype_id"
|
|
570
|
+
t.integer "property_id"
|
|
571
|
+
t.datetime "created_at", precision: 6
|
|
572
|
+
t.datetime "updated_at", precision: 6
|
|
573
|
+
end
|
|
574
|
+
|
|
575
|
+
create_table "spree_prototype_taxons", force: :cascade do |t|
|
|
576
|
+
t.integer "taxon_id"
|
|
577
|
+
t.integer "prototype_id"
|
|
578
|
+
t.datetime "created_at", precision: 6
|
|
579
|
+
t.datetime "updated_at", precision: 6
|
|
580
|
+
t.index ["prototype_id"], name: "index_spree_prototype_taxons_on_prototype_id"
|
|
581
|
+
t.index ["taxon_id"], name: "index_spree_prototype_taxons_on_taxon_id"
|
|
582
|
+
end
|
|
583
|
+
|
|
584
|
+
create_table "spree_prototypes", force: :cascade do |t|
|
|
585
|
+
t.string "name"
|
|
586
|
+
t.datetime "created_at", precision: 6
|
|
587
|
+
t.datetime "updated_at", precision: 6
|
|
588
|
+
end
|
|
589
|
+
|
|
590
|
+
create_table "spree_refund_reasons", force: :cascade do |t|
|
|
591
|
+
t.string "name"
|
|
592
|
+
t.boolean "active", default: true
|
|
593
|
+
t.boolean "mutable", default: true
|
|
594
|
+
t.datetime "created_at", precision: 6
|
|
595
|
+
t.datetime "updated_at", precision: 6
|
|
596
|
+
t.string "code"
|
|
597
|
+
end
|
|
598
|
+
|
|
599
|
+
create_table "spree_refunds", force: :cascade do |t|
|
|
600
|
+
t.integer "payment_id"
|
|
601
|
+
t.decimal "amount", precision: 10, scale: 2, default: "0.0", null: false
|
|
602
|
+
t.string "transaction_id"
|
|
603
|
+
t.datetime "created_at", precision: 6
|
|
604
|
+
t.datetime "updated_at", precision: 6
|
|
605
|
+
t.integer "refund_reason_id"
|
|
606
|
+
t.integer "reimbursement_id"
|
|
607
|
+
t.index ["payment_id"], name: "index_spree_refunds_on_payment_id"
|
|
608
|
+
t.index ["refund_reason_id"], name: "index_refunds_on_refund_reason_id"
|
|
609
|
+
t.index ["reimbursement_id"], name: "index_spree_refunds_on_reimbursement_id"
|
|
610
|
+
end
|
|
611
|
+
|
|
612
|
+
create_table "spree_reimbursement_credits", force: :cascade do |t|
|
|
613
|
+
t.decimal "amount", precision: 10, scale: 2, default: "0.0", null: false
|
|
614
|
+
t.integer "reimbursement_id"
|
|
615
|
+
t.integer "creditable_id"
|
|
616
|
+
t.string "creditable_type"
|
|
617
|
+
t.datetime "created_at", precision: 6
|
|
618
|
+
t.datetime "updated_at", precision: 6
|
|
619
|
+
end
|
|
620
|
+
|
|
621
|
+
create_table "spree_reimbursement_types", force: :cascade do |t|
|
|
622
|
+
t.string "name"
|
|
623
|
+
t.boolean "active", default: true
|
|
624
|
+
t.boolean "mutable", default: true
|
|
625
|
+
t.datetime "created_at", precision: 6
|
|
626
|
+
t.datetime "updated_at", precision: 6
|
|
627
|
+
t.string "type"
|
|
628
|
+
t.index ["type"], name: "index_spree_reimbursement_types_on_type"
|
|
629
|
+
end
|
|
630
|
+
|
|
631
|
+
create_table "spree_reimbursements", force: :cascade do |t|
|
|
632
|
+
t.string "number"
|
|
633
|
+
t.string "reimbursement_status"
|
|
634
|
+
t.integer "customer_return_id"
|
|
635
|
+
t.integer "order_id"
|
|
636
|
+
t.decimal "total", precision: 10, scale: 2
|
|
637
|
+
t.datetime "created_at", precision: 6
|
|
638
|
+
t.datetime "updated_at", precision: 6
|
|
639
|
+
t.index ["customer_return_id"], name: "index_spree_reimbursements_on_customer_return_id"
|
|
640
|
+
t.index ["order_id"], name: "index_spree_reimbursements_on_order_id"
|
|
641
|
+
end
|
|
642
|
+
|
|
643
|
+
create_table "spree_return_authorizations", force: :cascade do |t|
|
|
644
|
+
t.string "number"
|
|
645
|
+
t.string "state"
|
|
646
|
+
t.integer "order_id"
|
|
647
|
+
t.text "memo"
|
|
648
|
+
t.datetime "created_at", precision: 6
|
|
649
|
+
t.datetime "updated_at", precision: 6
|
|
650
|
+
t.integer "stock_location_id"
|
|
651
|
+
t.integer "return_reason_id"
|
|
652
|
+
t.index ["return_reason_id"], name: "index_return_authorizations_on_return_authorization_reason_id"
|
|
653
|
+
end
|
|
654
|
+
|
|
655
|
+
create_table "spree_return_items", force: :cascade do |t|
|
|
656
|
+
t.integer "return_authorization_id"
|
|
657
|
+
t.integer "inventory_unit_id"
|
|
658
|
+
t.integer "exchange_variant_id"
|
|
659
|
+
t.datetime "created_at", precision: 6
|
|
660
|
+
t.datetime "updated_at", precision: 6
|
|
661
|
+
t.decimal "amount", precision: 12, scale: 4, default: "0.0", null: false
|
|
662
|
+
t.decimal "included_tax_total", precision: 12, scale: 4, default: "0.0", null: false
|
|
663
|
+
t.decimal "additional_tax_total", precision: 12, scale: 4, default: "0.0", null: false
|
|
664
|
+
t.string "reception_status"
|
|
665
|
+
t.string "acceptance_status"
|
|
666
|
+
t.integer "customer_return_id"
|
|
667
|
+
t.integer "reimbursement_id"
|
|
668
|
+
t.integer "exchange_inventory_unit_id"
|
|
669
|
+
t.text "acceptance_status_errors"
|
|
670
|
+
t.integer "preferred_reimbursement_type_id"
|
|
671
|
+
t.integer "override_reimbursement_type_id"
|
|
672
|
+
t.boolean "resellable", default: true, null: false
|
|
673
|
+
t.integer "return_reason_id"
|
|
674
|
+
t.index ["customer_return_id"], name: "index_return_items_on_customer_return_id"
|
|
675
|
+
t.index ["exchange_inventory_unit_id"], name: "index_spree_return_items_on_exchange_inventory_unit_id"
|
|
676
|
+
end
|
|
677
|
+
|
|
678
|
+
create_table "spree_return_reasons", force: :cascade do |t|
|
|
679
|
+
t.string "name"
|
|
680
|
+
t.boolean "active", default: true
|
|
681
|
+
t.boolean "mutable", default: true
|
|
682
|
+
t.datetime "created_at", precision: 6
|
|
683
|
+
t.datetime "updated_at", precision: 6
|
|
684
|
+
end
|
|
685
|
+
|
|
686
|
+
create_table "spree_roles", force: :cascade do |t|
|
|
687
|
+
t.string "name"
|
|
688
|
+
t.datetime "created_at", precision: 6
|
|
689
|
+
t.datetime "updated_at", precision: 6
|
|
690
|
+
end
|
|
691
|
+
|
|
692
|
+
create_table "spree_roles_users", force: :cascade do |t|
|
|
693
|
+
t.integer "role_id"
|
|
694
|
+
t.integer "user_id"
|
|
695
|
+
t.datetime "created_at", precision: 6
|
|
696
|
+
t.datetime "updated_at", precision: 6
|
|
697
|
+
t.index ["role_id"], name: "index_spree_roles_users_on_role_id"
|
|
698
|
+
t.index ["user_id"], name: "index_spree_roles_users_on_user_id"
|
|
699
|
+
end
|
|
700
|
+
|
|
701
|
+
create_table "spree_shipments", force: :cascade do |t|
|
|
702
|
+
t.string "tracking"
|
|
703
|
+
t.string "number"
|
|
704
|
+
t.decimal "cost", precision: 10, scale: 2, default: "0.0"
|
|
705
|
+
t.datetime "shipped_at"
|
|
706
|
+
t.integer "order_id"
|
|
707
|
+
t.integer "deprecated_address_id"
|
|
708
|
+
t.string "state"
|
|
709
|
+
t.datetime "created_at", precision: 6
|
|
710
|
+
t.datetime "updated_at", precision: 6
|
|
711
|
+
t.integer "stock_location_id"
|
|
712
|
+
t.decimal "adjustment_total", precision: 10, scale: 2, default: "0.0"
|
|
713
|
+
t.decimal "additional_tax_total", precision: 10, scale: 2, default: "0.0"
|
|
714
|
+
t.decimal "promo_total", precision: 10, scale: 2, default: "0.0"
|
|
715
|
+
t.decimal "included_tax_total", precision: 10, scale: 2, default: "0.0", null: false
|
|
716
|
+
t.index ["deprecated_address_id"], name: "index_spree_shipments_on_deprecated_address_id"
|
|
717
|
+
t.index ["number"], name: "index_shipments_on_number"
|
|
718
|
+
t.index ["order_id"], name: "index_spree_shipments_on_order_id"
|
|
719
|
+
t.index ["stock_location_id"], name: "index_spree_shipments_on_stock_location_id"
|
|
720
|
+
end
|
|
721
|
+
|
|
722
|
+
create_table "spree_shipping_categories", force: :cascade do |t|
|
|
723
|
+
t.string "name"
|
|
724
|
+
t.datetime "created_at", precision: 6
|
|
725
|
+
t.datetime "updated_at", precision: 6
|
|
726
|
+
end
|
|
727
|
+
|
|
728
|
+
create_table "spree_shipping_method_categories", force: :cascade do |t|
|
|
729
|
+
t.integer "shipping_method_id", null: false
|
|
730
|
+
t.integer "shipping_category_id", null: false
|
|
731
|
+
t.datetime "created_at", precision: 6
|
|
732
|
+
t.datetime "updated_at", precision: 6
|
|
733
|
+
t.index ["shipping_category_id", "shipping_method_id"], name: "unique_spree_shipping_method_categories", unique: true
|
|
734
|
+
t.index ["shipping_method_id"], name: "index_spree_shipping_method_categories_on_shipping_method_id"
|
|
735
|
+
end
|
|
736
|
+
|
|
737
|
+
create_table "spree_shipping_method_stock_locations", force: :cascade do |t|
|
|
738
|
+
t.integer "shipping_method_id"
|
|
739
|
+
t.integer "stock_location_id"
|
|
740
|
+
t.datetime "created_at", precision: 6
|
|
741
|
+
t.datetime "updated_at", precision: 6
|
|
742
|
+
t.index ["shipping_method_id"], name: "shipping_method_id_spree_sm_sl"
|
|
743
|
+
t.index ["stock_location_id"], name: "sstock_location_id_spree_sm_sl"
|
|
744
|
+
end
|
|
745
|
+
|
|
746
|
+
create_table "spree_shipping_method_zones", force: :cascade do |t|
|
|
747
|
+
t.integer "shipping_method_id"
|
|
748
|
+
t.integer "zone_id"
|
|
749
|
+
t.datetime "created_at", precision: 6
|
|
750
|
+
t.datetime "updated_at", precision: 6
|
|
751
|
+
end
|
|
752
|
+
|
|
753
|
+
create_table "spree_shipping_methods", force: :cascade do |t|
|
|
754
|
+
t.string "name"
|
|
755
|
+
t.string "display_on"
|
|
756
|
+
t.datetime "deleted_at"
|
|
757
|
+
t.datetime "created_at", precision: 6
|
|
758
|
+
t.datetime "updated_at", precision: 6
|
|
759
|
+
t.string "tracking_url"
|
|
760
|
+
t.string "admin_name"
|
|
761
|
+
t.integer "tax_category_id"
|
|
762
|
+
t.string "code"
|
|
763
|
+
t.boolean "available_to_all", default: true
|
|
764
|
+
t.string "carrier"
|
|
765
|
+
t.string "service_level"
|
|
766
|
+
t.index ["tax_category_id"], name: "index_spree_shipping_methods_on_tax_category_id"
|
|
767
|
+
end
|
|
768
|
+
|
|
769
|
+
create_table "spree_shipping_rate_taxes", force: :cascade do |t|
|
|
770
|
+
t.decimal "amount", precision: 8, scale: 2, default: "0.0", null: false
|
|
771
|
+
t.integer "tax_rate_id"
|
|
772
|
+
t.integer "shipping_rate_id"
|
|
773
|
+
t.datetime "created_at", null: false, precision: 6
|
|
774
|
+
t.datetime "updated_at", null: false, precision: 6
|
|
775
|
+
t.index ["shipping_rate_id"], name: "index_spree_shipping_rate_taxes_on_shipping_rate_id"
|
|
776
|
+
t.index ["tax_rate_id"], name: "index_spree_shipping_rate_taxes_on_tax_rate_id"
|
|
777
|
+
end
|
|
778
|
+
|
|
779
|
+
create_table "spree_shipping_rates", force: :cascade do |t|
|
|
780
|
+
t.integer "shipment_id"
|
|
781
|
+
t.integer "shipping_method_id"
|
|
782
|
+
t.boolean "selected", default: false
|
|
783
|
+
t.decimal "cost", precision: 8, scale: 2, default: "0.0"
|
|
784
|
+
t.datetime "created_at", precision: 6
|
|
785
|
+
t.datetime "updated_at", precision: 6
|
|
786
|
+
t.integer "tax_rate_id"
|
|
787
|
+
t.index ["shipment_id", "shipping_method_id"], name: "spree_shipping_rates_join_index", unique: true
|
|
788
|
+
end
|
|
789
|
+
|
|
790
|
+
create_table "spree_state_changes", force: :cascade do |t|
|
|
791
|
+
t.string "name"
|
|
792
|
+
t.string "previous_state"
|
|
793
|
+
t.integer "stateful_id"
|
|
794
|
+
t.integer "user_id"
|
|
795
|
+
t.string "stateful_type"
|
|
796
|
+
t.string "next_state"
|
|
797
|
+
t.datetime "created_at", precision: 6
|
|
798
|
+
t.datetime "updated_at", precision: 6
|
|
799
|
+
t.index ["stateful_id", "stateful_type"], name: "index_spree_state_changes_on_stateful_id_and_stateful_type"
|
|
800
|
+
t.index ["user_id"], name: "index_spree_state_changes_on_user_id"
|
|
801
|
+
end
|
|
802
|
+
|
|
803
|
+
create_table "spree_states", force: :cascade do |t|
|
|
804
|
+
t.string "name"
|
|
805
|
+
t.string "abbr"
|
|
806
|
+
t.integer "country_id"
|
|
807
|
+
t.datetime "updated_at", precision: 6
|
|
808
|
+
t.datetime "created_at", precision: 6
|
|
809
|
+
t.index ["country_id"], name: "index_spree_states_on_country_id"
|
|
810
|
+
end
|
|
811
|
+
|
|
812
|
+
create_table "spree_stock_items", force: :cascade do |t|
|
|
813
|
+
t.integer "stock_location_id"
|
|
814
|
+
t.integer "variant_id"
|
|
815
|
+
t.integer "count_on_hand", default: 0, null: false
|
|
816
|
+
t.datetime "created_at", precision: 6
|
|
817
|
+
t.datetime "updated_at", precision: 6
|
|
818
|
+
t.boolean "backorderable", default: false
|
|
819
|
+
t.datetime "deleted_at"
|
|
820
|
+
t.index ["deleted_at"], name: "index_spree_stock_items_on_deleted_at"
|
|
821
|
+
t.index ["stock_location_id", "variant_id"], name: "stock_item_by_loc_and_var_id"
|
|
822
|
+
t.index ["stock_location_id"], name: "index_spree_stock_items_on_stock_location_id"
|
|
823
|
+
|
|
824
|
+
if connection.supports_partial_index?
|
|
825
|
+
t.index ["variant_id", "stock_location_id"], name: "index_spree_stock_items_on_variant_id_and_stock_location_id", unique: true, where: "deleted_at is null"
|
|
826
|
+
end
|
|
827
|
+
end
|
|
828
|
+
|
|
829
|
+
create_table "spree_stock_locations", force: :cascade do |t|
|
|
830
|
+
t.string "name"
|
|
831
|
+
t.datetime "created_at", precision: 6
|
|
832
|
+
t.datetime "updated_at", precision: 6
|
|
833
|
+
t.boolean "default", default: false, null: false
|
|
834
|
+
t.string "address1"
|
|
835
|
+
t.string "address2"
|
|
836
|
+
t.string "city"
|
|
837
|
+
t.integer "state_id"
|
|
838
|
+
t.string "state_name"
|
|
839
|
+
t.integer "country_id"
|
|
840
|
+
t.string "zipcode"
|
|
841
|
+
t.string "phone"
|
|
842
|
+
t.boolean "active", default: true
|
|
843
|
+
t.boolean "backorderable_default", default: false
|
|
844
|
+
t.boolean "propagate_all_variants", default: true
|
|
845
|
+
t.string "admin_name"
|
|
846
|
+
t.integer "position", default: 0
|
|
847
|
+
t.boolean "restock_inventory", default: true, null: false
|
|
848
|
+
t.boolean "fulfillable", default: true, null: false
|
|
849
|
+
t.string "code"
|
|
850
|
+
t.boolean "check_stock_on_transfer", default: true
|
|
851
|
+
t.index ["country_id"], name: "index_spree_stock_locations_on_country_id"
|
|
852
|
+
t.index ["state_id"], name: "index_spree_stock_locations_on_state_id"
|
|
853
|
+
end
|
|
854
|
+
|
|
855
|
+
create_table "spree_stock_movements", force: :cascade do |t|
|
|
856
|
+
t.integer "stock_item_id"
|
|
857
|
+
t.integer "quantity", default: 0
|
|
858
|
+
t.string "action"
|
|
859
|
+
t.datetime "created_at", null: false, precision: 6
|
|
860
|
+
t.datetime "updated_at", null: false, precision: 6
|
|
861
|
+
t.string "originator_type"
|
|
862
|
+
t.integer "originator_id"
|
|
863
|
+
t.index ["stock_item_id"], name: "index_spree_stock_movements_on_stock_item_id"
|
|
864
|
+
end
|
|
865
|
+
|
|
866
|
+
create_table "spree_store_credit_categories", force: :cascade do |t|
|
|
867
|
+
t.string "name"
|
|
868
|
+
t.datetime "created_at", precision: 6
|
|
869
|
+
t.datetime "updated_at", precision: 6
|
|
870
|
+
end
|
|
871
|
+
|
|
872
|
+
create_table "spree_store_credit_events", force: :cascade do |t|
|
|
873
|
+
t.integer "store_credit_id", null: false
|
|
874
|
+
t.string "action", null: false
|
|
875
|
+
t.decimal "amount", precision: 8, scale: 2
|
|
876
|
+
t.decimal "user_total_amount", precision: 8, scale: 2, default: "0.0", null: false
|
|
877
|
+
t.string "authorization_code", null: false
|
|
878
|
+
t.datetime "deleted_at"
|
|
879
|
+
t.string "originator_type"
|
|
880
|
+
t.integer "originator_id"
|
|
881
|
+
t.datetime "created_at", precision: 6
|
|
882
|
+
t.datetime "updated_at", precision: 6
|
|
883
|
+
t.integer "update_reason_id"
|
|
884
|
+
t.index ["deleted_at"], name: "index_spree_store_credit_events_on_deleted_at"
|
|
885
|
+
t.index ["store_credit_id"], name: "index_spree_store_credit_events_on_store_credit_id"
|
|
886
|
+
end
|
|
887
|
+
|
|
888
|
+
create_table "spree_store_credit_types", force: :cascade do |t|
|
|
889
|
+
t.string "name"
|
|
890
|
+
t.integer "priority"
|
|
891
|
+
t.datetime "created_at", precision: 6
|
|
892
|
+
t.datetime "updated_at", precision: 6
|
|
893
|
+
t.index ["priority"], name: "index_spree_store_credit_types_on_priority"
|
|
894
|
+
end
|
|
895
|
+
|
|
896
|
+
create_table "spree_store_credit_update_reasons", force: :cascade do |t|
|
|
897
|
+
t.string "name"
|
|
898
|
+
t.datetime "created_at", precision: 6
|
|
899
|
+
t.datetime "updated_at", precision: 6
|
|
900
|
+
end
|
|
901
|
+
|
|
902
|
+
create_table "spree_store_credits", force: :cascade do |t|
|
|
903
|
+
t.integer "user_id"
|
|
904
|
+
t.integer "category_id"
|
|
905
|
+
t.integer "created_by_id"
|
|
906
|
+
t.decimal "amount", precision: 8, scale: 2, default: "0.0", null: false
|
|
907
|
+
t.decimal "amount_used", precision: 8, scale: 2, default: "0.0", null: false
|
|
908
|
+
t.decimal "amount_authorized", precision: 8, scale: 2, default: "0.0", null: false
|
|
909
|
+
t.string "currency"
|
|
910
|
+
t.text "memo"
|
|
911
|
+
t.datetime "spree_store_credits"
|
|
912
|
+
t.datetime "deleted_at"
|
|
913
|
+
t.datetime "created_at", precision: 6
|
|
914
|
+
t.datetime "updated_at", precision: 6
|
|
915
|
+
t.integer "type_id"
|
|
916
|
+
t.datetime "invalidated_at"
|
|
917
|
+
t.index ["deleted_at"], name: "index_spree_store_credits_on_deleted_at"
|
|
918
|
+
t.index ["type_id"], name: "index_spree_store_credits_on_type_id"
|
|
919
|
+
t.index ["user_id"], name: "index_spree_store_credits_on_user_id"
|
|
920
|
+
end
|
|
921
|
+
|
|
922
|
+
create_table "spree_store_payment_methods", force: :cascade do |t|
|
|
923
|
+
t.integer "store_id", null: false
|
|
924
|
+
t.integer "payment_method_id", null: false
|
|
925
|
+
t.datetime "created_at", null: false, precision: 6
|
|
926
|
+
t.datetime "updated_at", null: false, precision: 6
|
|
927
|
+
t.index ["payment_method_id"], name: "index_spree_store_payment_methods_on_payment_method_id"
|
|
928
|
+
t.index ["store_id"], name: "index_spree_store_payment_methods_on_store_id"
|
|
929
|
+
end
|
|
930
|
+
|
|
931
|
+
create_table "spree_stores", force: :cascade do |t|
|
|
932
|
+
t.string "name"
|
|
933
|
+
t.string "url"
|
|
934
|
+
t.text "meta_description"
|
|
935
|
+
t.text "meta_keywords"
|
|
936
|
+
t.string "seo_title"
|
|
937
|
+
t.string "mail_from_address"
|
|
938
|
+
t.string "default_currency"
|
|
939
|
+
t.string "code"
|
|
940
|
+
t.boolean "default", default: false, null: false
|
|
941
|
+
t.datetime "created_at", precision: 6
|
|
942
|
+
t.datetime "updated_at", precision: 6
|
|
943
|
+
t.string "cart_tax_country_iso"
|
|
944
|
+
t.index ["code"], name: "index_spree_stores_on_code"
|
|
945
|
+
t.index ["default"], name: "index_spree_stores_on_default"
|
|
946
|
+
end
|
|
947
|
+
|
|
948
|
+
create_table "spree_tax_categories", force: :cascade do |t|
|
|
949
|
+
t.string "name"
|
|
950
|
+
t.string "description"
|
|
951
|
+
t.boolean "is_default", default: false
|
|
952
|
+
t.datetime "deleted_at"
|
|
953
|
+
t.datetime "created_at", precision: 6
|
|
954
|
+
t.datetime "updated_at", precision: 6
|
|
955
|
+
t.string "tax_code"
|
|
956
|
+
end
|
|
957
|
+
|
|
958
|
+
create_table "spree_tax_rates", force: :cascade do |t|
|
|
959
|
+
t.decimal "amount", precision: 8, scale: 5
|
|
960
|
+
t.integer "zone_id"
|
|
961
|
+
t.integer "tax_category_id"
|
|
962
|
+
t.boolean "included_in_price", default: false
|
|
963
|
+
t.datetime "created_at", precision: 6
|
|
964
|
+
t.datetime "updated_at", precision: 6
|
|
965
|
+
t.string "name"
|
|
966
|
+
t.boolean "show_rate_in_label", default: true
|
|
967
|
+
t.datetime "deleted_at"
|
|
968
|
+
t.index ["deleted_at"], name: "index_spree_tax_rates_on_deleted_at"
|
|
969
|
+
t.index ["tax_category_id"], name: "index_spree_tax_rates_on_tax_category_id"
|
|
970
|
+
t.index ["zone_id"], name: "index_spree_tax_rates_on_zone_id"
|
|
971
|
+
end
|
|
972
|
+
|
|
973
|
+
create_table "spree_taxonomies", force: :cascade do |t|
|
|
974
|
+
t.string "name", null: false
|
|
975
|
+
t.datetime "created_at", precision: 6
|
|
976
|
+
t.datetime "updated_at", precision: 6
|
|
977
|
+
t.integer "position", default: 0
|
|
978
|
+
t.index ["position"], name: "index_spree_taxonomies_on_position"
|
|
979
|
+
end
|
|
980
|
+
|
|
981
|
+
create_table "spree_taxons", force: :cascade do |t|
|
|
982
|
+
t.integer "parent_id"
|
|
983
|
+
t.integer "position", default: 0
|
|
984
|
+
t.string "name", null: false
|
|
985
|
+
t.string "permalink"
|
|
986
|
+
t.integer "taxonomy_id"
|
|
987
|
+
t.integer "lft"
|
|
988
|
+
t.integer "rgt"
|
|
989
|
+
t.string "icon_file_name"
|
|
990
|
+
t.string "icon_content_type"
|
|
991
|
+
t.integer "icon_file_size"
|
|
992
|
+
t.datetime "icon_updated_at"
|
|
993
|
+
t.text "description"
|
|
994
|
+
t.datetime "created_at", precision: 6
|
|
995
|
+
t.datetime "updated_at", precision: 6
|
|
996
|
+
t.string "meta_title"
|
|
997
|
+
t.string "meta_description"
|
|
998
|
+
t.string "meta_keywords"
|
|
999
|
+
t.integer "depth"
|
|
1000
|
+
t.index ["parent_id"], name: "index_taxons_on_parent_id"
|
|
1001
|
+
t.index ["permalink"], name: "index_taxons_on_permalink"
|
|
1002
|
+
t.index ["position"], name: "index_spree_taxons_on_position"
|
|
1003
|
+
t.index ["taxonomy_id"], name: "index_taxons_on_taxonomy_id"
|
|
1004
|
+
end
|
|
1005
|
+
|
|
1006
|
+
create_table "spree_unit_cancels", force: :cascade do |t|
|
|
1007
|
+
t.integer "inventory_unit_id", null: false
|
|
1008
|
+
t.string "reason"
|
|
1009
|
+
t.string "created_by"
|
|
1010
|
+
t.datetime "created_at", precision: 6
|
|
1011
|
+
t.datetime "updated_at", precision: 6
|
|
1012
|
+
t.index ["inventory_unit_id"], name: "index_spree_unit_cancels_on_inventory_unit_id"
|
|
1013
|
+
end
|
|
1014
|
+
|
|
1015
|
+
create_table "spree_user_addresses", force: :cascade do |t|
|
|
1016
|
+
t.integer "user_id", null: false
|
|
1017
|
+
t.integer "address_id", null: false
|
|
1018
|
+
t.boolean "default", default: false
|
|
1019
|
+
t.boolean "archived", default: false
|
|
1020
|
+
t.datetime "created_at", null: false, precision: 6
|
|
1021
|
+
t.datetime "updated_at", null: false, precision: 6
|
|
1022
|
+
t.index ["address_id"], name: "index_spree_user_addresses_on_address_id"
|
|
1023
|
+
t.index ["user_id", "address_id"], name: "index_spree_user_addresses_on_user_id_and_address_id", unique: true
|
|
1024
|
+
t.index ["user_id"], name: "index_spree_user_addresses_on_user_id"
|
|
1025
|
+
end
|
|
1026
|
+
|
|
1027
|
+
create_table "spree_user_stock_locations", force: :cascade do |t|
|
|
1028
|
+
t.integer "user_id"
|
|
1029
|
+
t.integer "stock_location_id"
|
|
1030
|
+
t.datetime "created_at", precision: 6
|
|
1031
|
+
t.datetime "updated_at", precision: 6
|
|
1032
|
+
t.index ["user_id"], name: "index_spree_user_stock_locations_on_user_id"
|
|
1033
|
+
end
|
|
1034
|
+
|
|
1035
|
+
create_table "spree_variant_property_rule_conditions", force: :cascade do |t|
|
|
1036
|
+
t.integer "option_value_id"
|
|
1037
|
+
t.integer "variant_property_rule_id"
|
|
1038
|
+
t.datetime "created_at", null: false, precision: 6
|
|
1039
|
+
t.datetime "updated_at", null: false, precision: 6
|
|
1040
|
+
t.index ["variant_property_rule_id", "option_value_id"], name: "index_spree_variant_prop_rule_conditions_on_rule_and_optval"
|
|
1041
|
+
end
|
|
1042
|
+
|
|
1043
|
+
create_table "spree_variant_property_rule_values", force: :cascade do |t|
|
|
1044
|
+
t.text "value"
|
|
1045
|
+
t.integer "position", default: 0
|
|
1046
|
+
t.integer "property_id"
|
|
1047
|
+
t.integer "variant_property_rule_id"
|
|
1048
|
+
t.datetime "created_at", precision: 6
|
|
1049
|
+
t.datetime "updated_at", precision: 6
|
|
1050
|
+
t.index ["property_id"], name: "index_spree_variant_property_rule_values_on_property_id"
|
|
1051
|
+
t.index ["variant_property_rule_id"], name: "index_spree_variant_property_rule_values_on_rule"
|
|
1052
|
+
end
|
|
1053
|
+
|
|
1054
|
+
create_table "spree_variant_property_rules", force: :cascade do |t|
|
|
1055
|
+
t.integer "product_id"
|
|
1056
|
+
t.datetime "created_at", null: false, precision: 6
|
|
1057
|
+
t.datetime "updated_at", null: false, precision: 6
|
|
1058
|
+
t.index ["product_id"], name: "index_spree_variant_property_rules_on_product_id"
|
|
1059
|
+
end
|
|
1060
|
+
|
|
1061
|
+
create_table "spree_variants", force: :cascade do |t|
|
|
1062
|
+
t.string "sku", default: "", null: false
|
|
1063
|
+
t.decimal "weight", precision: 8, scale: 2, default: "0.0"
|
|
1064
|
+
t.decimal "height", precision: 8, scale: 2
|
|
1065
|
+
t.decimal "width", precision: 8, scale: 2
|
|
1066
|
+
t.decimal "depth", precision: 8, scale: 2
|
|
1067
|
+
t.datetime "deleted_at"
|
|
1068
|
+
t.boolean "is_master", default: false
|
|
1069
|
+
t.integer "product_id"
|
|
1070
|
+
t.decimal "cost_price", precision: 10, scale: 2
|
|
1071
|
+
t.integer "position"
|
|
1072
|
+
t.string "cost_currency"
|
|
1073
|
+
t.boolean "track_inventory", default: true
|
|
1074
|
+
t.integer "tax_category_id"
|
|
1075
|
+
t.datetime "updated_at", precision: 6
|
|
1076
|
+
t.datetime "created_at", precision: 6
|
|
1077
|
+
t.index ["position"], name: "index_spree_variants_on_position"
|
|
1078
|
+
t.index ["product_id"], name: "index_spree_variants_on_product_id"
|
|
1079
|
+
t.index ["sku"], name: "index_spree_variants_on_sku"
|
|
1080
|
+
t.index ["tax_category_id"], name: "index_spree_variants_on_tax_category_id"
|
|
1081
|
+
t.index ["track_inventory"], name: "index_spree_variants_on_track_inventory"
|
|
1082
|
+
end
|
|
1083
|
+
|
|
1084
|
+
create_table "spree_zone_members", force: :cascade do |t|
|
|
1085
|
+
t.string "zoneable_type"
|
|
1086
|
+
t.integer "zoneable_id"
|
|
1087
|
+
t.integer "zone_id"
|
|
1088
|
+
t.datetime "created_at", precision: 6
|
|
1089
|
+
t.datetime "updated_at", precision: 6
|
|
1090
|
+
t.index ["zone_id"], name: "index_spree_zone_members_on_zone_id"
|
|
1091
|
+
t.index ["zoneable_id", "zoneable_type"], name: "index_spree_zone_members_on_zoneable_id_and_zoneable_type"
|
|
1092
|
+
end
|
|
1093
|
+
|
|
1094
|
+
create_table "spree_zones", force: :cascade do |t|
|
|
1095
|
+
t.string "name"
|
|
1096
|
+
t.string "description"
|
|
1097
|
+
t.boolean "default_tax", default: false
|
|
1098
|
+
t.integer "zone_members_count", default: 0
|
|
1099
|
+
t.datetime "created_at", precision: 6
|
|
1100
|
+
t.datetime "updated_at", precision: 6
|
|
1101
|
+
end
|
|
1102
|
+
end
|
|
1103
|
+
end
|