dynamic_migrations 3.6.5 → 3.6.6

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: 2fc1e5f220706376e73d84dc6f78acbb549f745a45c70d89e8335f540e44ef5f
4
- data.tar.gz: 5532ce24fbcc66d9d0eeb765b686f303af60e871ae371437953d88170ea51898
3
+ metadata.gz: d55b74ca5d593d1eb9b5f7709f9f5d5e1de5c2d5d13ef7e3073a68f79ff9d8e3
4
+ data.tar.gz: 8fa0077921bff51558769231e26f050bb6818d908a137e76c1ae566b622216c3
5
5
  SHA512:
6
- metadata.gz: 4bf89b66978b604919aaf1892df850a8679d611d4052ec904970fd0859879fefb3ae0878159243af80ec4b2484207a29f74248a44487baa3c27fafa6b5c51cba
7
- data.tar.gz: 367a8f6fff5a9a5e869c8720e662745d755972e225e0145001b4126856c45e2ad75e9e783a2277590932abac2b39db42305abed509dda51c7c0dbed4a4e85d7b
6
+ metadata.gz: 588d41a319f45fcfba3c7708adf33edf8b3d1e8adf4f82d222f4fcaf4842b5c98607efa4db7033f8c42df8ab3d9796d32a3f5216634a7b69bd616b022e285d97
7
+ data.tar.gz: 5144499575a152f2251a218b7033c2190d00f247ef5e864215db2b7f1992dd3c21399e65cb102db8d969b8eb08913d2bc0c4d54610f45fd4091b9b3450ee4199
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.6.6](https://github.com/craigulliott/dynamic_migrations/compare/v3.6.5...v3.6.6) (2023-09-13)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * column_name and data_type were presented in the wrong order ([e58f8df](https://github.com/craigulliott/dynamic_migrations/commit/e58f8df7d2acabc8a64f760d6ababe218a23928d))
9
+
3
10
  ## [3.6.5](https://github.com/craigulliott/dynamic_migrations/compare/v3.6.4...v3.6.5) (2023-09-13)
4
11
 
5
12
 
@@ -120,7 +120,7 @@ module DynamicMigrations
120
120
  "\"#{data_type}\""
121
121
  end
122
122
 
123
- lines << "t.column #{data_type}, :#{column.name}, #{options_syntax}"
123
+ lines << "t.column :#{column.name}, #{data_type}, #{options_syntax}"
124
124
  end
125
125
 
126
126
  if timestamps.any?
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DynamicMigrations
4
- VERSION = "3.6.5"
4
+ VERSION = "3.6.6"
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.5
4
+ version: 3.6.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Craig Ulliott