dynamic_migrations 3.6.14 → 3.6.15

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: 2a53664f8e85f6f7570b65b756687db445a71c5e48cdc7f52ab4a394570e9be5
4
- data.tar.gz: 49cad85aaff8c311714a5e9c47c16708e8f6c3d7b6f276ce94d5b0dc8703eae6
3
+ metadata.gz: 7b1f731ee879fc2da123605b8cb10c5dee47ff16a065dd043be4ec4424ceba90
4
+ data.tar.gz: ee8925da339476c44a54440240d4736b443ae671075d6f9791033052ef542da3
5
5
  SHA512:
6
- metadata.gz: 03230e628a4b6b0719d12ffeecc68ba0395c405ae828232331195a319f2bfc394a00ba80f999ba68660392dede3a76d4656b749c991ba940332901c0a93cb771
7
- data.tar.gz: 7b169d5836f5c6a53cfab698c3f8af30c397334bea5efb1087de0f9c33c481218955b90311715a75f96c124c9bd6306887713eddd5a218cbe375bedbd6dd5f31
6
+ metadata.gz: 841a16d865fc252e0c7ea85b589d0de86703c1d718ba05fd695852daff12117e6dbbfd7ccb22e7f29659253e8193054dccca635423ccd9ea0dc7875482606cb8
7
+ data.tar.gz: 16ffa1cffc44cf979247738466a5884db216042f82b945b4936e0f1beca4d04b4544f71b4912e65a1b2e5581d8ffb5c4b2d288a55198eaf6dfdcad04372b10b6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.6.15](https://github.com/craigulliott/dynamic_migrations/compare/v3.6.14...v3.6.15) (2023-09-14)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * missing colon before foreign schema name in migration generator ([b94ad92](https://github.com/craigulliott/dynamic_migrations/commit/b94ad924c7ead5ad697ea4fb48871ac827ad5c85))
9
+
3
10
  ## [3.6.14](https://github.com/craigulliott/dynamic_migrations/compare/v3.6.13...v3.6.14) (2023-09-14)
4
11
 
5
12
 
@@ -40,10 +40,6 @@ module DynamicMigrations
40
40
  RUBY
41
41
  end
42
42
 
43
- if foreign_key_constraint.table.schema != foreign_key_constraint.foreign_table.schema
44
- options[:foreign_schema] = foreign_key_constraint.foreign_table.schema.name.to_s
45
- end
46
-
47
43
  options_syntax = options.map { |k, v| "#{k}: #{v}" }.join(", ")
48
44
 
49
45
  add_fragment schema: foreign_key_constraint.table.schema,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DynamicMigrations
4
- VERSION = "3.6.14"
4
+ VERSION = "3.6.15"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dynamic_migrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.6.14
4
+ version: 3.6.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Craig Ulliott