bscf-core 0.3.2 → 0.3.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a665cac0e90ed35610f60b90c87ef86eddc49b7b5ea3f89e121fb76ff1273326
4
- data.tar.gz: e081ceb0f304fbf2a236d8d9eeb6054c49242dae83a2662aaf524a22324c9cd2
3
+ metadata.gz: dd47b3e011e60ef5b4cbcb310e70a01168420828e1fc9a14f28aead37b398e74
4
+ data.tar.gz: 50f8a023c47c05b92aad12a9e14aa56e09dfd4678100fd80b3ca799d1ba711f2
5
5
  SHA512:
6
- metadata.gz: 88dcb3b6eb964e482640b2bbc490f4d91273daa4bca3ecc64ba5f9a030eb24dc380b2b1721c2f6d6b5c8b0b2dbefe63872452e78d184e819f68f06e40d8a7261
7
- data.tar.gz: 4f7c894f2338827e3b1b6e1b9cdcf60f67e41239e99ad0308f334dabab3e5bda881e1bf52102b30dd11d88cfd0f8a985c05b80c13b8d3f113fe195c258bcf4a9
6
+ metadata.gz: 86941b153a3078dbfc9f47e1673eb51d3613d00cd719152779aba72fc28fc1d909c90682811f17e158b2e372284b44cba01838237b9dda9ff6fbcde73f2aca2f
7
+ data.tar.gz: 8e942a30a68662a7240e9ebf944a3f7692c6b4ae8afb51a353e8c2d91847611731b15f1ce83fe44ef1bef1c963c93bd2f0726e94152180a4360ec95bed0ee859
@@ -0,0 +1,57 @@
1
+ # This migration comes from active_storage (originally 20170806125915)
2
+ class CreateActiveStorageTables < ActiveRecord::Migration[7.0]
3
+ def change
4
+ # Use Active Record's configured type for primary and foreign keys
5
+ primary_key_type, foreign_key_type = primary_and_foreign_key_types
6
+
7
+ create_table :active_storage_blobs, id: primary_key_type do |t|
8
+ t.string :key, null: false
9
+ t.string :filename, null: false
10
+ t.string :content_type
11
+ t.text :metadata
12
+ t.string :service_name, null: false
13
+ t.bigint :byte_size, null: false
14
+ t.string :checksum
15
+
16
+ if connection.supports_datetime_with_precision?
17
+ t.datetime :created_at, precision: 6, null: false
18
+ else
19
+ t.datetime :created_at, null: false
20
+ end
21
+
22
+ t.index [ :key ], unique: true
23
+ end
24
+
25
+ create_table :active_storage_attachments, id: primary_key_type do |t|
26
+ t.string :name, null: false
27
+ t.references :record, null: false, polymorphic: true, index: false, type: foreign_key_type
28
+ t.references :blob, null: false, type: foreign_key_type
29
+
30
+ if connection.supports_datetime_with_precision?
31
+ t.datetime :created_at, precision: 6, null: false
32
+ else
33
+ t.datetime :created_at, null: false
34
+ end
35
+
36
+ t.index [ :record_type, :record_id, :name, :blob_id ], name: :index_active_storage_attachments_uniqueness, unique: true
37
+ t.foreign_key :active_storage_blobs, column: :blob_id
38
+ end
39
+
40
+ create_table :active_storage_variant_records, id: primary_key_type do |t|
41
+ t.belongs_to :blob, null: false, index: false, type: foreign_key_type
42
+ t.string :variation_digest, null: false
43
+
44
+ t.index [ :blob_id, :variation_digest ], name: :index_active_storage_variant_records_uniqueness, unique: true
45
+ t.foreign_key :active_storage_blobs, column: :blob_id
46
+ end
47
+ end
48
+
49
+ private
50
+ def primary_and_foreign_key_types
51
+ config = Rails.configuration.generators
52
+ setting = config.options[config.orm][:primary_key_type]
53
+ primary_key_type = setting || :primary_key
54
+ foreign_key_type = setting || :bigint
55
+ [ primary_key_type, foreign_key_type ]
56
+ end
57
+ end
@@ -1,5 +1,5 @@
1
1
  module Bscf
2
2
  module Core
3
- VERSION = "0.3.2"
3
+ VERSION = "0.3.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bscf-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Asrat
@@ -332,6 +332,7 @@ files:
332
332
  - db/migrate/20250331113323_create_bscf_core_marketplace_listings.rb
333
333
  - db/migrate/20250402120554_create_bscf_core_wholesaler_products.rb
334
334
  - db/migrate/20250403190620_create_bscf_core_business_documents.rb
335
+ - db/migrate/20250403194629_create_active_storage_tables.active_storage.rb
335
336
  - lib/bscf/core.rb
336
337
  - lib/bscf/core/engine.rb
337
338
  - lib/bscf/core/version.rb