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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7b1f731ee879fc2da123605b8cb10c5dee47ff16a065dd043be4ec4424ceba90
|
|
4
|
+
data.tar.gz: ee8925da339476c44a54440240d4736b443ae671075d6f9791033052ef542da3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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,
|