bscf-core 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +1 -1
  3. data/app/models/bscf/core/address.rb +7 -0
  4. data/app/models/bscf/core/business.rb +15 -0
  5. data/app/models/bscf/core/category.rb +11 -0
  6. data/app/models/bscf/core/order.rb +24 -0
  7. data/app/models/bscf/core/order_item.rb +15 -0
  8. data/app/models/bscf/core/product.rb +29 -0
  9. data/app/models/bscf/core/quotation.rb +29 -0
  10. data/app/models/bscf/core/quotation_item.rb +23 -0
  11. data/app/models/bscf/core/request_for_quotation.rb +13 -0
  12. data/app/models/bscf/core/rfq_item.rb +9 -0
  13. data/app/models/bscf/core/role.rb +10 -0
  14. data/app/models/bscf/core/user.rb +21 -0
  15. data/app/models/bscf/core/user_profile.rb +26 -0
  16. data/app/models/bscf/core/user_role.rb +8 -0
  17. data/app/models/bscf/core/virtual_account.rb +53 -0
  18. data/app/models/bscf/core/virtual_account_transaction.rb +158 -0
  19. data/db/migrate/20250326065606_create_bscf_core_users.rb +18 -0
  20. data/db/migrate/20250326075111_create_bscf_core_roles.rb +9 -0
  21. data/db/migrate/20250326080646_create_bscf_core_user_profiles.rb +19 -0
  22. data/db/migrate/20250326081052_create_bscf_core_addresses.rb +14 -0
  23. data/db/migrate/20250326084233_create_bscf_core_user_roles.rb +10 -0
  24. data/db/migrate/20250326085741_create_bscf_core_virtual_accounts.rb +24 -0
  25. data/db/migrate/20250326103305_create_bscf_core_categories.rb +11 -0
  26. data/db/migrate/20250326105652_create_bscf_core_products.rb +14 -0
  27. data/db/migrate/20250326112449_create_bscf_core_businesses.rb +14 -0
  28. data/db/migrate/20250326115203_create_bscf_core_request_for_quotations.rb +11 -0
  29. data/db/migrate/20250326120613_create_bscf_core_rfq_items.rb +12 -0
  30. data/db/migrate/20250326121246_create_bscf_core_bscf_core_virtual_account_transactions.rb +19 -0
  31. data/db/migrate/20250327041651_create_bscf_core_quotations.rb +15 -0
  32. data/db/migrate/20250327044020_create_bscf_core_quotation_items.rb +15 -0
  33. data/db/migrate/20250327102217_create_bscf_core_orders.rb +14 -0
  34. data/db/migrate/20250327112412_create_bscf_core_order_items.rb +14 -0
  35. data/lib/bscf/core/engine.rb +18 -0
  36. data/lib/bscf/core/version.rb +1 -1
  37. data/lib/tasks/release.rake +42 -0
  38. data/spec/dummy/db/schema.rb +246 -0
  39. data/spec/dummy/log/development.log +2060 -0
  40. data/spec/dummy/log/test.log +69259 -0
  41. data/spec/examples.txt +167 -3
  42. data/spec/factories/bscf/core/addresses.rb +10 -0
  43. data/spec/factories/bscf/core/businesses.rb +24 -0
  44. data/spec/factories/bscf/core/categories.rb +16 -0
  45. data/spec/factories/bscf/core/order_items.rb +10 -0
  46. data/spec/factories/bscf/core/orders.rb +10 -0
  47. data/spec/factories/bscf/core/products.rb +8 -0
  48. data/spec/factories/bscf/core/quotation_items.rb +11 -0
  49. data/spec/factories/bscf/core/quotations.rb +28 -0
  50. data/spec/factories/bscf/core/request_for_quotations.rb +7 -0
  51. data/spec/factories/bscf/core/rfq_items.rb +8 -0
  52. data/spec/factories/bscf/core/roles.rb +5 -0
  53. data/spec/factories/bscf/core/user_profiles.rb +15 -0
  54. data/spec/factories/bscf/core/user_roles.rb +6 -0
  55. data/spec/factories/bscf/core/users.rb +10 -0
  56. data/spec/factories/bscf/core/virtual_account_transactions.rb +34 -0
  57. data/spec/factories/bscf/core/virtual_accounts.rb +38 -0
  58. data/spec/models/bscf/core/address_spec.rb +12 -0
  59. data/spec/models/bscf/core/business_spec.rb +64 -0
  60. data/spec/models/bscf/core/category_spec.rb +43 -0
  61. data/spec/models/bscf/core/order_item_spec.rb +26 -0
  62. data/spec/models/bscf/core/order_spec.rb +16 -0
  63. data/spec/models/bscf/core/product_spec.rb +47 -0
  64. data/spec/models/bscf/core/quotation_item_spec.rb +44 -0
  65. data/spec/models/bscf/core/quotation_spec.rb +41 -0
  66. data/spec/models/bscf/core/request_for_quotation_spec.rb +13 -0
  67. data/spec/models/bscf/core/rfq_item_spec.rb +14 -0
  68. data/spec/models/bscf/core/role_spec.rb +14 -0
  69. data/spec/models/bscf/core/user_profile_spec.rb +20 -0
  70. data/spec/models/bscf/core/user_role_spec.rb +13 -0
  71. data/spec/models/bscf/core/user_spec.rb +22 -0
  72. data/spec/models/bscf/core/virtual_account_spec.rb +111 -0
  73. data/spec/models/bscf/core/virtual_account_transaction_spec.rb +133 -0
  74. data/spec/spec_helper.rb +4 -1
  75. data/spec/support/requests/shared_requests.rb +4 -4
  76. metadata +69 -2
@@ -0,0 +1,19 @@
1
+ class CreateBscfCoreBscfCoreVirtualAccountTransactions < ActiveRecord::Migration[8.0]
2
+ def change
3
+ create_table :bscf_core_virtual_account_transactions do |t|
4
+ t.references :from_account, null: false, foreign_key: { to_table: :bscf_core_virtual_accounts }
5
+ t.references :to_account, null: false, foreign_key: { to_table: :bscf_core_virtual_accounts }
6
+ t.decimal :amount, null: false
7
+ t.integer :transaction_type, null: false
8
+ t.integer :status, null: false, default: 0
9
+ t.string :reference_number, null: false
10
+ t.text :description
11
+
12
+ t.timestamps
13
+ end
14
+
15
+ add_index :bscf_core_virtual_account_transactions, :reference_number, unique: true
16
+ add_index :bscf_core_virtual_account_transactions, [ :from_account_id, :reference_number ]
17
+ add_index :bscf_core_virtual_account_transactions, [ :to_account_id, :reference_number ]
18
+ end
19
+ end
@@ -0,0 +1,15 @@
1
+ class CreateBscfCoreQuotations < ActiveRecord::Migration[8.0]
2
+ def change
3
+ create_table :bscf_core_quotations do |t|
4
+ t.references :request_for_quotation, null: false, foreign_key: { to_table: :bscf_core_request_for_quotations }
5
+ t.references :business, null: false, foreign_key: { to_table: :bscf_core_businesses }
6
+ t.decimal :price, null: false
7
+ t.date :delivery_date, null: false
8
+ t.datetime :valid_until, null: false
9
+ t.integer :status, null: false, default: 0
10
+ t.text :notes
11
+
12
+ t.timestamps
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+ class CreateBscfCoreQuotationItems < ActiveRecord::Migration[8.0]
2
+ def change
3
+ create_table :bscf_core_quotation_items do |t|
4
+ t.references :quotation, null: false, foreign_key: { to_table: :bscf_core_quotations }
5
+ t.references :rfq_item, null: false, foreign_key: { to_table: :bscf_core_rfq_items }
6
+ t.references :product, null: false, foreign_key: { to_table: :bscf_core_products }
7
+ t.integer :quantity, null: false
8
+ t.decimal :unit_price, null: false
9
+ t.integer :unit, null: false
10
+ t.decimal :subtotal, null: false
11
+
12
+ t.timestamps
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,14 @@
1
+ class CreateBscfCoreOrders < ActiveRecord::Migration[8.0]
2
+ def change
3
+ create_table :bscf_core_orders do |t|
4
+ t.references :ordered_by, null: true, foreign_key: { to_table: :bscf_core_users }
5
+ t.references :ordered_to, null: true, foreign_key: { to_table: :bscf_core_users }
6
+ t.references :quotation, null: true, foreign_key: { to_table: :bscf_core_quotations }
7
+ t.integer :order_type, null: false, default: 0
8
+ t.integer :status, null: false, default: 0
9
+ t.float :total_amount, precision: 10, scale: 2
10
+
11
+ t.timestamps
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,14 @@
1
+ class CreateBscfCoreOrderItems < ActiveRecord::Migration[8.0]
2
+ def change
3
+ create_table :bscf_core_order_items do |t|
4
+ t.references :order, null: false, foreign_key: { to_table: :bscf_core_orders }
5
+ t.references :product, null: false, foreign_key: { to_table: :bscf_core_products }
6
+ t.references :quotation_item, null: true, foreign_key: { to_table: :bscf_core_quotation_items }
7
+ t.float :quantity, null: false
8
+ t.float :unit_price, null: false
9
+ t.float :subtotal, null: false
10
+
11
+ t.timestamps
12
+ end
13
+ end
14
+ end
@@ -3,6 +3,24 @@ module Bscf
3
3
  class Engine < ::Rails::Engine
4
4
  isolate_namespace Bscf::Core
5
5
  config.generators.api_only = true
6
+
7
+ config.generators do |g|
8
+ g.test_framework :rspec, routing_specs: false
9
+ g.fixture_replacement :factory_bot
10
+ g.factory_bot dir: "spec/factories"
11
+ end
12
+
13
+ initializer "bscf_core.factories", after: "factory_bot.set_factory_paths" do
14
+ FactoryBot.definition_file_paths << File.expand_path("../../../spec/factories", __dir__) if defined?(FactoryBot)
15
+ end
16
+
17
+ initializer :append_migrations do |app|
18
+ unless app.root.to_s.match(root.to_s + File::SEPARATOR)
19
+ app.config.paths["db/migrate"].concat(config.paths["db/migrate"].expanded)
20
+ end
21
+ end
22
+
23
+ require "active_storage/engine"
6
24
  end
7
25
  end
8
26
  end
@@ -1,5 +1,5 @@
1
1
  module Bscf
2
2
  module Core
3
- VERSION = "0.1.0"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  end
@@ -0,0 +1,42 @@
1
+ namespace :version do
2
+ task :bump, [ :type ] do |t, args|
3
+ args.with_defaults(type: "patch")
4
+ version_file = "lib/bscf/core/version.rb"
5
+ content = File.read(version_file)
6
+ current = content.match(/VERSION = "(.*)"/)[1].split(".").map(&:to_i)
7
+
8
+ case args[:type]
9
+ when "major" then current = [ current[0] + 1, 0, 0 ]
10
+ when "minor" then current = [ current[0], current[1] + 1, 0 ]
11
+ when "patch" then current = [ current[0], current[1], current[2] + 1 ]
12
+ end
13
+
14
+ new_version = current.join(".")
15
+ new_content = content.gsub(/VERSION = ".*"/, "VERSION = \"#{new_version}\"")
16
+ File.write(version_file, new_content)
17
+
18
+ puts "Bumped to version #{new_version}"
19
+ end
20
+
21
+ task :commit do
22
+ version_file = "lib/bscf/core/version.rb"
23
+ version = File.read(version_file).match(/VERSION = "(.*?)"/)[1]
24
+ sh "git add #{version_file}"
25
+ sh "git commit -m 'Bump version to #{version}'"
26
+ end
27
+
28
+ task :tag do
29
+ version = File.read("lib/bscf/core/version.rb").match(/VERSION = "(.*?)"/)[1]
30
+ sh "git tag v#{version}"
31
+ end
32
+
33
+ task :push do
34
+ sh "git push origin main"
35
+ sh "git push origin --tags"
36
+ end
37
+
38
+ task release: [ :bump, :commit, :tag, :push ] do
39
+ version = File.read("lib/bscf/core/version.rb").match(/VERSION = "(.*?)"/)[1]
40
+ puts "Released version #{version}"
41
+ end
42
+ end
@@ -0,0 +1,246 @@
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
+ #
5
+ # This file is the source Rails uses to define your schema when running `bin/rails
6
+ # db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to
7
+ # be faster and is potentially less error prone than running all of your
8
+ # migrations from scratch. Old migrations may fail to apply correctly if those
9
+ # migrations use external dependencies or application code.
10
+ #
11
+ # It's strongly recommended that you check this file into your version control system.
12
+
13
+ ActiveRecord::Schema[8.0].define(version: 2025_03_27_112412) do
14
+ # These are extensions that must be enabled in order to support this database
15
+ enable_extension "pg_catalog.plpgsql"
16
+
17
+ create_table "bscf_core_addresses", force: :cascade do |t|
18
+ t.string "city"
19
+ t.string "sub_city"
20
+ t.string "woreda"
21
+ t.string "latitude"
22
+ t.string "longitude"
23
+ t.string "house_number"
24
+ t.datetime "created_at", null: false
25
+ t.datetime "updated_at", null: false
26
+ end
27
+
28
+ create_table "bscf_core_businesses", force: :cascade do |t|
29
+ t.bigint "user_id", null: false
30
+ t.string "business_name", null: false
31
+ t.string "tin_number", null: false
32
+ t.integer "business_type", default: 0, null: false
33
+ t.datetime "verified_at"
34
+ t.integer "verification_status", default: 0, null: false
35
+ t.datetime "created_at", null: false
36
+ t.datetime "updated_at", null: false
37
+ t.index ["user_id"], name: "index_bscf_core_businesses_on_user_id"
38
+ end
39
+
40
+ create_table "bscf_core_categories", force: :cascade do |t|
41
+ t.string "name", null: false
42
+ t.string "description", null: false
43
+ t.bigint "parent_id"
44
+ t.datetime "created_at", null: false
45
+ t.datetime "updated_at", null: false
46
+ end
47
+
48
+ create_table "bscf_core_order_items", force: :cascade do |t|
49
+ t.bigint "order_id", null: false
50
+ t.bigint "product_id", null: false
51
+ t.bigint "quotation_item_id"
52
+ t.float "quantity", null: false
53
+ t.float "unit_price", null: false
54
+ t.float "subtotal", null: false
55
+ t.datetime "created_at", null: false
56
+ t.datetime "updated_at", null: false
57
+ t.index ["order_id"], name: "index_bscf_core_order_items_on_order_id"
58
+ t.index ["product_id"], name: "index_bscf_core_order_items_on_product_id"
59
+ t.index ["quotation_item_id"], name: "index_bscf_core_order_items_on_quotation_item_id"
60
+ end
61
+
62
+ create_table "bscf_core_orders", force: :cascade do |t|
63
+ t.bigint "ordered_by_id"
64
+ t.bigint "ordered_to_id"
65
+ t.bigint "quotation_id"
66
+ t.integer "order_type", default: 0, null: false
67
+ t.integer "status", default: 0, null: false
68
+ t.float "total_amount"
69
+ t.datetime "created_at", null: false
70
+ t.datetime "updated_at", null: false
71
+ t.index ["ordered_by_id"], name: "index_bscf_core_orders_on_ordered_by_id"
72
+ t.index ["ordered_to_id"], name: "index_bscf_core_orders_on_ordered_to_id"
73
+ t.index ["quotation_id"], name: "index_bscf_core_orders_on_quotation_id"
74
+ end
75
+
76
+ create_table "bscf_core_products", force: :cascade do |t|
77
+ t.string "sku", null: false
78
+ t.string "name", null: false
79
+ t.string "description", null: false
80
+ t.bigint "category_id", null: false
81
+ t.decimal "base_price", default: "0.0", null: false
82
+ t.datetime "created_at", null: false
83
+ t.datetime "updated_at", null: false
84
+ t.index ["category_id"], name: "index_bscf_core_products_on_category_id"
85
+ t.index ["sku"], name: "index_bscf_core_products_on_sku", unique: true
86
+ end
87
+
88
+ create_table "bscf_core_quotation_items", force: :cascade do |t|
89
+ t.bigint "quotation_id", null: false
90
+ t.bigint "rfq_item_id", null: false
91
+ t.bigint "product_id", null: false
92
+ t.integer "quantity", null: false
93
+ t.decimal "unit_price", null: false
94
+ t.integer "unit", null: false
95
+ t.decimal "subtotal", null: false
96
+ t.datetime "created_at", null: false
97
+ t.datetime "updated_at", null: false
98
+ t.index ["product_id"], name: "index_bscf_core_quotation_items_on_product_id"
99
+ t.index ["quotation_id"], name: "index_bscf_core_quotation_items_on_quotation_id"
100
+ t.index ["rfq_item_id"], name: "index_bscf_core_quotation_items_on_rfq_item_id"
101
+ end
102
+
103
+ create_table "bscf_core_quotations", force: :cascade do |t|
104
+ t.bigint "request_for_quotation_id", null: false
105
+ t.bigint "business_id", null: false
106
+ t.decimal "price", null: false
107
+ t.date "delivery_date", null: false
108
+ t.datetime "valid_until", null: false
109
+ t.integer "status", default: 0, null: false
110
+ t.text "notes"
111
+ t.datetime "created_at", null: false
112
+ t.datetime "updated_at", null: false
113
+ t.index ["business_id"], name: "index_bscf_core_quotations_on_business_id"
114
+ t.index ["request_for_quotation_id"], name: "index_bscf_core_quotations_on_request_for_quotation_id"
115
+ end
116
+
117
+ create_table "bscf_core_request_for_quotations", force: :cascade do |t|
118
+ t.bigint "user_id", null: false
119
+ t.integer "status", default: 0, null: false
120
+ t.text "notes"
121
+ t.datetime "created_at", null: false
122
+ t.datetime "updated_at", null: false
123
+ t.index ["user_id"], name: "index_bscf_core_request_for_quotations_on_user_id"
124
+ end
125
+
126
+ create_table "bscf_core_rfq_items", force: :cascade do |t|
127
+ t.bigint "request_for_quotation_id", null: false
128
+ t.bigint "product_id", null: false
129
+ t.float "quantity", null: false
130
+ t.text "notes"
131
+ t.datetime "created_at", null: false
132
+ t.datetime "updated_at", null: false
133
+ t.index ["product_id"], name: "index_bscf_core_rfq_items_on_product_id"
134
+ t.index ["request_for_quotation_id"], name: "index_bscf_core_rfq_items_on_request_for_quotation_id"
135
+ end
136
+
137
+ create_table "bscf_core_roles", force: :cascade do |t|
138
+ t.string "name", null: false
139
+ t.datetime "created_at", null: false
140
+ t.datetime "updated_at", null: false
141
+ end
142
+
143
+ create_table "bscf_core_user_profiles", force: :cascade do |t|
144
+ t.bigint "user_id", null: false
145
+ t.date "date_of_birth", null: false
146
+ t.string "nationality", null: false
147
+ t.string "occupation", null: false
148
+ t.string "source_of_funds", null: false
149
+ t.integer "kyc_status", default: 0
150
+ t.integer "gender", null: false
151
+ t.datetime "verified_at"
152
+ t.bigint "verified_by_id"
153
+ t.bigint "address_id", null: false
154
+ t.string "fayda_id"
155
+ t.datetime "created_at", null: false
156
+ t.datetime "updated_at", null: false
157
+ t.index ["address_id"], name: "index_bscf_core_user_profiles_on_address_id"
158
+ t.index ["user_id"], name: "index_bscf_core_user_profiles_on_user_id"
159
+ t.index ["verified_by_id"], name: "index_bscf_core_user_profiles_on_verified_by_id"
160
+ end
161
+
162
+ create_table "bscf_core_user_roles", force: :cascade do |t|
163
+ t.bigint "user_id", null: false
164
+ t.bigint "role_id", null: false
165
+ t.datetime "created_at", null: false
166
+ t.datetime "updated_at", null: false
167
+ t.index ["role_id"], name: "index_bscf_core_user_roles_on_role_id"
168
+ t.index ["user_id"], name: "index_bscf_core_user_roles_on_user_id"
169
+ end
170
+
171
+ create_table "bscf_core_users", force: :cascade do |t|
172
+ t.string "first_name", null: false
173
+ t.string "middle_name", null: false
174
+ t.string "last_name", null: false
175
+ t.string "email", null: false
176
+ t.string "phone_number", null: false
177
+ t.string "password_digest", null: false
178
+ t.datetime "created_at", null: false
179
+ t.datetime "updated_at", null: false
180
+ t.index ["email"], name: "index_bscf_core_users_on_email", unique: true
181
+ t.index ["phone_number"], name: "index_bscf_core_users_on_phone_number", unique: true
182
+ end
183
+
184
+ create_table "bscf_core_virtual_account_transactions", force: :cascade do |t|
185
+ t.bigint "from_account_id", null: false
186
+ t.bigint "to_account_id", null: false
187
+ t.decimal "amount", null: false
188
+ t.integer "transaction_type", null: false
189
+ t.integer "status", default: 0, null: false
190
+ t.string "reference_number", null: false
191
+ t.text "description"
192
+ t.datetime "created_at", null: false
193
+ t.datetime "updated_at", null: false
194
+ t.index ["from_account_id", "reference_number"], name: "idx_on_from_account_id_reference_number_ecc8e65d8f"
195
+ t.index ["from_account_id"], name: "idx_on_from_account_id_643ea7341d"
196
+ t.index ["reference_number"], name: "idx_on_reference_number_9aa4ea6333", unique: true
197
+ t.index ["to_account_id", "reference_number"], name: "idx_on_to_account_id_reference_number_6f4048491d"
198
+ t.index ["to_account_id"], name: "index_bscf_core_virtual_account_transactions_on_to_account_id"
199
+ end
200
+
201
+ create_table "bscf_core_virtual_accounts", force: :cascade do |t|
202
+ t.bigint "user_id", null: false
203
+ t.string "account_number", null: false
204
+ t.string "cbs_account_number", null: false
205
+ t.decimal "balance", default: "0.0", null: false
206
+ t.decimal "interest_rate", default: "0.0", null: false
207
+ t.integer "interest_type", default: 0, null: false
208
+ t.boolean "active", default: true, null: false
209
+ t.string "branch_code", null: false
210
+ t.string "product_scheme", null: false
211
+ t.string "voucher_type", null: false
212
+ t.integer "status", default: 0, null: false
213
+ t.datetime "created_at", null: false
214
+ t.datetime "updated_at", null: false
215
+ t.index ["account_number"], name: "index_bscf_core_virtual_accounts_on_account_number", unique: true
216
+ t.index ["branch_code"], name: "index_bscf_core_virtual_accounts_on_branch_code"
217
+ t.index ["cbs_account_number"], name: "index_bscf_core_virtual_accounts_on_cbs_account_number", unique: true
218
+ t.index ["user_id", "account_number"], name: "index_bscf_core_virtual_accounts_on_user_id_and_account_number"
219
+ t.index ["user_id"], name: "index_bscf_core_virtual_accounts_on_user_id"
220
+ end
221
+
222
+ add_foreign_key "bscf_core_businesses", "bscf_core_users", column: "user_id"
223
+ add_foreign_key "bscf_core_order_items", "bscf_core_orders", column: "order_id"
224
+ add_foreign_key "bscf_core_order_items", "bscf_core_products", column: "product_id"
225
+ add_foreign_key "bscf_core_order_items", "bscf_core_quotation_items", column: "quotation_item_id"
226
+ add_foreign_key "bscf_core_orders", "bscf_core_quotations", column: "quotation_id"
227
+ add_foreign_key "bscf_core_orders", "bscf_core_users", column: "ordered_by_id"
228
+ add_foreign_key "bscf_core_orders", "bscf_core_users", column: "ordered_to_id"
229
+ add_foreign_key "bscf_core_products", "bscf_core_categories", column: "category_id"
230
+ add_foreign_key "bscf_core_quotation_items", "bscf_core_products", column: "product_id"
231
+ add_foreign_key "bscf_core_quotation_items", "bscf_core_quotations", column: "quotation_id"
232
+ add_foreign_key "bscf_core_quotation_items", "bscf_core_rfq_items", column: "rfq_item_id"
233
+ add_foreign_key "bscf_core_quotations", "bscf_core_businesses", column: "business_id"
234
+ add_foreign_key "bscf_core_quotations", "bscf_core_request_for_quotations", column: "request_for_quotation_id"
235
+ add_foreign_key "bscf_core_request_for_quotations", "bscf_core_users", column: "user_id"
236
+ add_foreign_key "bscf_core_rfq_items", "bscf_core_products", column: "product_id"
237
+ add_foreign_key "bscf_core_rfq_items", "bscf_core_request_for_quotations", column: "request_for_quotation_id"
238
+ add_foreign_key "bscf_core_user_profiles", "bscf_core_addresses", column: "address_id"
239
+ add_foreign_key "bscf_core_user_profiles", "bscf_core_users", column: "user_id"
240
+ add_foreign_key "bscf_core_user_profiles", "bscf_core_users", column: "verified_by_id"
241
+ add_foreign_key "bscf_core_user_roles", "bscf_core_roles", column: "role_id"
242
+ add_foreign_key "bscf_core_user_roles", "bscf_core_users", column: "user_id"
243
+ add_foreign_key "bscf_core_virtual_account_transactions", "bscf_core_virtual_accounts", column: "from_account_id"
244
+ add_foreign_key "bscf_core_virtual_account_transactions", "bscf_core_virtual_accounts", column: "to_account_id"
245
+ add_foreign_key "bscf_core_virtual_accounts", "bscf_core_users", column: "user_id"
246
+ end