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 +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/dynamic_migrations/postgres/server/database/differences/to_migrations/extensions.rb +2 -2
- data/lib/dynamic_migrations/postgres/server/database/differences/to_migrations/schemas/enums.rb +2 -2
- data/lib/dynamic_migrations/postgres/server/database/differences/to_migrations/schemas/functions.rb +2 -2
- data/lib/dynamic_migrations/postgres/server/database/differences/to_migrations/schemas/tables.rb +2 -2
- data/lib/dynamic_migrations/postgres/server/database/differences/to_migrations/schemas.rb +2 -2
- data/lib/dynamic_migrations/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8db557bd15584279e5453bf8e11664fbc5c9cbce80da60feaede298aa2931450
|
4
|
+
data.tar.gz: 52c990e7611103a9bc60daa33d673f7f9d62cf753253419d3a237c44394eeecf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
|
data/lib/dynamic_migrations/postgres/server/database/differences/to_migrations/extensions.rb
CHANGED
@@ -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]
|
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
|
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
|
data/lib/dynamic_migrations/postgres/server/database/differences/to_migrations/schemas/enums.rb
CHANGED
@@ -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]
|
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
|
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
|
data/lib/dynamic_migrations/postgres/server/database/differences/to_migrations/schemas/functions.rb
CHANGED
@@ -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]
|
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
|
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
|
data/lib/dynamic_migrations/postgres/server/database/differences/to_migrations/schemas/tables.rb
CHANGED
@@ -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]
|
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
|
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]
|
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
|
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]
|