active_shrine 0.4.0 → 0.5.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 995a4b8dce06a3080e166a8953c6fc3af4b6df04bdfc68a7e291b9a106990f4f
4
- data.tar.gz: 857c7b1fbe6976f22c1bb0d20e95173117c29d20c36298fbbe13e9189e125c97
3
+ metadata.gz: 197975739ca00f2daa4c862413a372ee52ce634c308b6f5784d2b588d4f4e498
4
+ data.tar.gz: 5d6119a5f5d32d54a79adff404fce302c2aa170b0b62edb09486b6d510732185
5
5
  SHA512:
6
- metadata.gz: 332f75c6d900ba40f7304fecd0f9d8220ebb2784098824be24d904ab34f875eac625ead20ace853922159c632a66a6281246d3549ba8a6a319b6e50dc32e87df
7
- data.tar.gz: 8ffd4133f22f296d0bb18b26f05e4546d2aeee0710e456ea3dcf78d42c0f693e3576c2529fd5ab9fb686c5e30c8c79ea7e37186da2e2a6dfbfecd5680712eef1
6
+ metadata.gz: cce39085bbe3593da28a9d845b9319343efead530dfd8177d62a4c3f9891cbdb771900772e7f4e561f31f5fe25def92eae07c237be3f6b547084093eecc68a3e
7
+ data.tar.gz: 66ecf1b6c13c4f0420a3e1ae45a554620a73c3f67ca96c7bca2c0dd0e72afdcad103596f66cac72bd974291a9e7008a0465e175a560299517b3ce1f83a2c28d6
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveShrine
4
- VERSION = "0.4.0"
4
+ VERSION = "0.5.0"
5
5
  end
@@ -2,8 +2,11 @@
2
2
 
3
3
  class CreateActiveShrineAttachments < ActiveRecord::Migration[7.0]
4
4
  def change
5
- create_table :active_shrine_attachments do |t|
6
- t.belongs_to :record, polymorphic: true, null: true
5
+ # Use Active Record's configured type for primary and foreign keys
6
+ primary_key_type, foreign_key_type = primary_and_foreign_key_types
7
+
8
+ create_table :active_shrine_attachments, id: primary_key_type do |t|
9
+ t.belongs_to :record, polymorphic: true, null: true, type: foreign_key_type
7
10
  t.string :name, null: false
8
11
  t.string :type, null: false, default: "ActiveShrine::Attachment"
9
12
  if ActiveRecord::Base.connection.adapter_name.downcase.include?("postgresql")
@@ -16,6 +19,7 @@ class CreateActiveShrineAttachments < ActiveRecord::Migration[7.0]
16
19
 
17
20
  t.timestamps
18
21
  end
22
+
19
23
  add_index :active_shrine_attachments, :name
20
24
  if ActiveRecord::Base.connection.adapter_name.downcase.include?("postgresql")
21
25
  add_index :active_shrine_attachments, :file_data, using: :gin
@@ -25,4 +29,14 @@ class CreateActiveShrineAttachments < ActiveRecord::Migration[7.0]
25
29
  add_index :active_shrine_attachments, :metadata
26
30
  end
27
31
  end
32
+
33
+ private
34
+
35
+ def primary_and_foreign_key_types
36
+ config = Rails.configuration.generators
37
+ setting = config.options[config.orm][:primary_key_type]
38
+ primary_key_type = setting || :primary_key
39
+ foreign_key_type = setting || :bigint
40
+ [ primary_key_type, foreign_key_type ]
41
+ end
28
42
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_shrine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Radioactive Labs
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties