strong_migrations 2.2.1 → 2.3.0
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: 3538811c535186c2757c2e92a56ec753c77842a99728a727aabe323dd8852182
|
4
|
+
data.tar.gz: 6d33a69582e57e3035d7ef540894ce0020957aef8d4e081e693552615ac9af8b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50a4b8ea0d0677bc0d5a3fa740f9f2e8b00acee0e673abaf7197c0c89540165ecb0cad913ed4244b61e3ac23342d4c44b8209991dea3841ee6dd7d7fbef827e3
|
7
|
+
data.tar.gz: fd6d44273d6365ca9e33a246e072a24da93191bfc73b5d425df22c0b3b6523ce218d6aa6360dd6a8fcbcf88b5a06bf41c7221ccdceb69f26b734510cd38876f7
|
data/CHANGELOG.md
CHANGED
@@ -177,6 +177,11 @@ module StrongMigrations
|
|
177
177
|
63
|
178
178
|
end
|
179
179
|
|
180
|
+
def constraints(table, column)
|
181
|
+
# TODO improve column check
|
182
|
+
connection.check_constraints(table).select { |c| /\b#{Regexp.escape(column.to_s)}\b/.match?(c.expression) }
|
183
|
+
end
|
184
|
+
|
180
185
|
private
|
181
186
|
|
182
187
|
def set_timeout(setting, timeout)
|
@@ -210,6 +210,32 @@ module StrongMigrations
|
|
210
210
|
end
|
211
211
|
|
212
212
|
raise_error :change_column, rewrite_blocks: adapter.rewrite_blocks unless safe
|
213
|
+
|
214
|
+
# constraints must be rechecked
|
215
|
+
# Postgres recommends dropping constraints before and adding them back
|
216
|
+
# https://www.postgresql.org/docs/current/ddl-alter.html#DDL-ALTER-COLUMN-TYPE
|
217
|
+
if postgresql?
|
218
|
+
constraints = adapter.constraints(table, column)
|
219
|
+
if constraints.any?
|
220
|
+
change_commands = []
|
221
|
+
constraints.each do |c|
|
222
|
+
change_commands << command_str(:remove_check_constraint, [table, c.expression, {name: c.name}])
|
223
|
+
end
|
224
|
+
change_commands << command_str(:change_column, args + [options])
|
225
|
+
constraints.each do |c|
|
226
|
+
change_commands << command_str(:add_check_constraint, [table, c.expression, {name: c.name, validate: false}])
|
227
|
+
end
|
228
|
+
|
229
|
+
validate_commands = []
|
230
|
+
constraints.each do |c|
|
231
|
+
validate_commands << command_str(:validate_check_constraint, [table, {name: c.name}])
|
232
|
+
end
|
233
|
+
|
234
|
+
raise_error :change_column_constraint,
|
235
|
+
change_column_code: change_commands.join("\n "),
|
236
|
+
validate_constraint_code: validate_commands.join("\n ")
|
237
|
+
end
|
238
|
+
end
|
213
239
|
end
|
214
240
|
|
215
241
|
def check_change_column_default(*args)
|
@@ -60,6 +60,22 @@ while the entire table is rewritten. A safer approach is to:
|
|
60
60
|
change_column_with_not_null:
|
61
61
|
"Changing the type is safe, but setting NOT NULL is not.",
|
62
62
|
|
63
|
+
change_column_constraint: "Changing the type of a column that has check constraints blocks reads and writes
|
64
|
+
while every row is checked. Drop the check constraints on the column before
|
65
|
+
changing the type and add them back afterwards.
|
66
|
+
|
67
|
+
class %{migration_name} < ActiveRecord::Migration%{migration_suffix}
|
68
|
+
def change
|
69
|
+
%{change_column_code}
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
class Validate%{migration_name} < ActiveRecord::Migration%{migration_suffix}
|
74
|
+
def change
|
75
|
+
%{validate_constraint_code}
|
76
|
+
end
|
77
|
+
end",
|
78
|
+
|
63
79
|
remove_column: "Active Record caches attributes, which causes problems
|
64
80
|
when removing columns. Be sure to ignore the column%{column_suffix}:
|
65
81
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: strong_migrations
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Kane
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
- David Waller
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2025-03
|
12
|
+
date: 2025-04-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activerecord
|