dynamic_migrations 3.5.2 → 3.5.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: d618a9b98ed9b0f378f6e4342c57e6df554df34c600572a6aa55db61dbb32fad
4
- data.tar.gz: a90d7e5fa28aa0f4dbc2d42a7545ed6207bc800baba766dd23c9bc0e73cfd0c6
3
+ metadata.gz: 8db557bd15584279e5453bf8e11664fbc5c9cbce80da60feaede298aa2931450
4
+ data.tar.gz: 52c990e7611103a9bc60daa33d673f7f9d62cf753253419d3a237c44394eeecf
5
5
  SHA512:
6
- metadata.gz: 33c0b803f4a4a01aff67b258ade285c2acf0420c0c611b918cf24405f5081497050bdcb726532b01fe4d832a086d15a4b37dc5a03c445772e7b6e863edd795c6
7
- data.tar.gz: 7a00457cdb78107f62c43bd74647513817c1fbb0e4dbbc92bdc458aefc02030980fd074d03f2ada4399dd442f4152098024a492839fe98ccba2ad16ad4508356
6
+ metadata.gz: 5ba74991b8200a6b0725b77e6db992783f994ebebf6c362b92077757f11a0a5bd48cbf1b6a88c324caa23b461011a2248bfeafbb833610f7d82ad9a5e8d74291
7
+ data.tar.gz: 10ac70b56fe1a6c5ddd429321ee88b8134f3c1d20e9fe5ef70460f75117d73374a2d79893169b12289c755295491e99dc627f8ec851498a387cd6fe3812f0fdc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.5.3](https://github.com/craigulliott/dynamic_migrations/compare/v3.5.2...v3.5.3) (2023-09-11)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * accepting nil or false for existence check when calculating differences (because if the schema doesn't exist we wont have table objects to test against) ([de63879](https://github.com/craigulliott/dynamic_migrations/commit/de638791035a0a1ad4658149777aa6e2ac7dc2ed))
9
+
3
10
  ## [3.5.2](https://github.com/craigulliott/dynamic_migrations/compare/v3.5.1...v3.5.2) (2023-09-11)
4
11
 
5
12
 
@@ -10,13 +10,13 @@ module DynamicMigrations
10
10
  def process_extension extension_name, configuration_extension, database_extension
11
11
  # if the extension exists in the configuration but not in the database
12
12
  # then we have to create it
13
- if configuration_extension[:exists] == true && database_extension[:exists] == false
13
+ if configuration_extension[:exists] == true && !database_extension[:exists]
14
14
  # a migration to create the extension
15
15
  @generator.create_extension extension_name
16
16
 
17
17
  # if the extension exists in the database but not in the configuration
18
18
  # then we need to delete it
19
- elsif configuration_extension[:exists] == false && database_extension[:exists] == true
19
+ elsif database_extension[:exists] == true && !configuration_extension[:exists]
20
20
  # a migration to drop the extension
21
21
  @generator.drop_extension extension_name
22
22
  end
@@ -19,7 +19,7 @@ module DynamicMigrations
19
19
  def process_enum schema_name, enum_name, configuration_enum, database_enum
20
20
  # If the enum exists in the configuration but not in the database
21
21
  # then we have to create it.
22
- if configuration_enum[:exists] == true && database_enum[:exists] == false
22
+ if configuration_enum[:exists] == true && !database_enum[:exists]
23
23
  # a migration to create the enum
24
24
  enum = @database.configured_schema(schema_name).enum(enum_name)
25
25
  @generator.create_enum enum
@@ -30,7 +30,7 @@ module DynamicMigrations
30
30
 
31
31
  # If the schema exists in the database but not in the configuration
32
32
  # then we need to delete it.
33
- elsif configuration_enum[:exists] == false && database_enum[:exists] == true
33
+ elsif database_enum[:exists] == true && !configuration_enum[:exists]
34
34
  # a migration to create the enum
35
35
  enum = @database.loaded_schema(schema_name).enum(enum_name)
36
36
  @generator.drop_enum enum
@@ -19,14 +19,14 @@ module DynamicMigrations
19
19
  def process_function schema_name, function_name, configuration_function, database_function
20
20
  # If the function exists in the configuration but not in the database
21
21
  # then we have to create it.
22
- if configuration_function[:exists] == true && database_function[:exists] == false
22
+ if configuration_function[:exists] == true && !database_function[:exists]
23
23
  # a migration to create the function
24
24
  function = @database.configured_schema(schema_name).function(function_name)
25
25
  @generator.create_function function
26
26
 
27
27
  # If the schema exists in the database but not in the configuration
28
28
  # then we need to delete it.
29
- elsif configuration_function[:exists] == false && database_function[:exists] == true
29
+ elsif database_function[:exists] == true && !configuration_function[:exists]
30
30
  # a migration to create the function
31
31
  function = @database.loaded_schema(schema_name).function(function_name)
32
32
  @generator.drop_function function
@@ -19,7 +19,7 @@ module DynamicMigrations
19
19
  def process_table schema_name, table_name, configuration_table, database_table
20
20
  # If the table exists in the configuration but not in the database
21
21
  # then we have to create it.
22
- if configuration_table[:exists] == true && database_table[:exists] == false
22
+ if configuration_table[:exists] == true && !database_table[:exists]
23
23
  # a migration to create the table
24
24
  table = @database.configured_schema(schema_name).table(table_name)
25
25
  @generator.create_table table
@@ -30,7 +30,7 @@ module DynamicMigrations
30
30
 
31
31
  # If the schema exists in the database but not in the configuration
32
32
  # then we need to delete it.
33
- elsif configuration_table[:exists] == false && database_table[:exists] == true
33
+ elsif database_table[:exists] == true && !configuration_table[:exists]
34
34
  # we process everything else before we drop the table, because the other
35
35
  # database objects are dependent on the table
36
36
  process_dependents schema_name, table_name, {}, database_table
@@ -10,7 +10,7 @@ module DynamicMigrations
10
10
  def process_schema schema_name, configuration_schema, database_schema
11
11
  # if the schema exists in the configuration but not in the database
12
12
  # then we have to create it
13
- if configuration_schema[:exists] == true && database_schema[:exists] == false
13
+ if configuration_schema[:exists] == true && !database_schema[:exists]
14
14
  # a migration to create the schema
15
15
  schema = @database.configured_schema schema_name
16
16
  @generator.create_schema schema
@@ -23,7 +23,7 @@ module DynamicMigrations
23
23
 
24
24
  # if the schema exists in the database but not in the configuration
25
25
  # then we need to delete it
26
- elsif configuration_schema[:exists] == false && database_schema[:exists] == true
26
+ elsif database_schema[:exists] == true && !configuration_schema[:exists]
27
27
  # we process the tables and functions before we drop the schema
28
28
  # as this will drop any dependencies on the schema
29
29
  process_functions schema_name, {}, database_schema[:functions]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DynamicMigrations
4
- VERSION = "3.5.2"
4
+ VERSION = "3.5.3"
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.5.2
4
+ version: 3.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Craig Ulliott