actual_db_schema 0.5.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fc3d368f25e1d191f7a3e3b57215208ecc72cd6c7b40662e4898279b585d0d0e
4
- data.tar.gz: a907caa6bad53ff65c4e257a85871350d3ab1aa6f8cce07710436d8a99f9b52c
3
+ metadata.gz: 116a62e0bbc1d2f43ad5e7654f732807bb6807520f26f33bfde84889601bb895
4
+ data.tar.gz: 63c36388ed0efa1d19b9daec936206b6580e22b1b04b25a0db3f058047c34b56
5
5
  SHA512:
6
- metadata.gz: c5d79fe8513b58084f31a85274c130f4cd6983c271e64b042697ff7e38b5c3be0c4b3af71f5e7f47be09d167a12ca5c1844cdcde9f4e4063b2ac015bb84163cb
7
- data.tar.gz: f9914a080827f0e906745cd7b1ff703d594a315e308059b3f614aeeea03d0aa571dc76a827186cdd0f073324bb9536c718891b06f4497f55ec5a48c7447f24de
6
+ metadata.gz: ef27b62051c6183b68a35018b0ed7f402f25f8de2f3d3da8f842b914c13516a49b00ab57687a513bca04b664fc682b40c93c75929e414dfea514c2e0065a68b9
7
+ data.tar.gz: 7a7f0ce3ef0ce09a5a0ecf90ff0aec292ae6f9ab58050ce946dd849123b36162398592a9249ea9ec4acecbe9cfe2031737cbe16c5c0b5ef89989ebb48237fee9
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## [0.6.0] - 2024-01-03
2
+
3
+ - Added db:phantom_migrations task to display phantom migrations
4
+ - Updated README
5
+
1
6
  ## [0.5.0] - 2023-11-06
2
7
 
3
8
  - Rails 7.1 support added
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- actual_db_schema (0.5.0)
4
+ actual_db_schema (0.6.0)
5
5
  activerecord (>= 6.0.0)
6
6
  activesupport (>= 6.0.0)
7
7
 
data/README.md CHANGED
@@ -2,7 +2,37 @@
2
2
 
3
3
  # ActualDbSchema
4
4
 
5
- Keep Rails DB schema consistent while switching between branches with no additional actions.
5
+ Does switching between branches in your Rails app mess up the DB schema?
6
+
7
+ Keep the DB schema actual across branches in your Rails project. Just install `actual_db_schema` gem and run `db:migrate` in branches as usual. It automatically rolls back the *phantom migrations* (non-relevant to the current branch). No additional steps are needed.
8
+
9
+ ## Why ActualDbSchema
10
+
11
+ Still not clear why it's needed? To grasp the purpose of this gem and the issue it addresses, review the problem definition outlined below.
12
+
13
+ ### The problem definition
14
+
15
+ Imagine you're working on **branch A**. You add a not-null column to a database table with a migration. You run the migration. Then you switch to **branch B**. The code in **branch B** isn't aware of this newly added field. When it tries to write data to the table, it fails with an error `null value provided for non-null field`. Why? The existing code is writing a null value into the column with a not-null constraint.
16
+
17
+ Here's an example of this error:
18
+
19
+ ActiveRecord::NotNullViolation:
20
+ PG::NotNullViolation: ERROR: null value in column "log" of relation "check_results" violates not-null constraint
21
+ DETAIL: Failing row contains (8, 46, success, 2022-10-16 21:47:21.07212, 2022-10-16 21:47:21.07212, null).
22
+
23
+ Furthermore, the `db:migrate` task on **branch B** generates an irrelevant diff on the `schema.rb` file, reflecting the new column added in **branch A**.
24
+
25
+ To fix this, you need to switch back to **branch A**, find the migration that added the problematic field, and roll it back. We'll call it a *phantom migration*. It's a pain, especially if you have a lot of branches in your project because you have to remember which branch the *phantom migration* is in and then manually roll it back.
26
+
27
+ With `actual_db_schema` gem you don't need to care about that anymore. It saves you time by handling all this dirty work behind the scenes automatically.
28
+
29
+ ### How it solves the issue
30
+
31
+ This gem stores all run migrations with their code in the `tmp/migrations` folder. Whenever you perform a schema dump, it rolls back the *phantom migrations*.
32
+
33
+ The *phantom migrations* list is the difference between the migrations you've executed (in the `tmp/migrations` folder) and the current ones (in the `db/migrate` folder).
34
+
35
+ Therefore, all you do is run rails `db:migrate` in your current branch. `actual_db_schema` will ensure the DB schema is up-to-date. You'll never have an inaccurate `schema.rb` file again.
6
36
 
7
37
  ## Installation
8
38
 
@@ -20,28 +50,14 @@ And then execute:
20
50
 
21
51
  ## Usage
22
52
 
23
- TLTR; Just run `rails db:migrate` inside the current branch.
24
-
25
- In **branch A** I add a mandatory (not null) field into DB via migration and run it.
26
- Then I switch to another **branch B**. This branch's code is not aware of that field.
27
- As the result, the code is failing with an error "null value provided for non-null field".
28
- Moreover, a DB rake task generates a diff on `schema.rb` that's not relevant to this branch.
29
- I can switch to **branch A** and roll back the migration, but I need to remember that branch or waste time on it.
30
-
31
- Some example of this error:
32
-
33
- ActiveRecord::NotNullViolation:
34
- PG::NotNullViolation: ERROR: null value in column "log" of relation "check_results" violates not-null constraint
35
- DETAIL: Failing row contains (8, 46, success, 2022-10-16 21:47:21.07212, 2022-10-16 21:47:21.07212, null).
36
-
37
- This gem saves all run migrations inside `tmp/migrations` folder.
38
- Every run of schema dump (that's a dependency of `db:migrate` task as well) rolls back the "unknown" for the current branch migrations
39
- looking into the `tmp/migrations` folder.
53
+ Just run `rails db:migrate` inside the current branch.
40
54
 
41
- You just need to run `rails db:migrate` in the current branch to actualize the DB schema. With its hand, you will never have wrongly generated `schema.rb`.
55
+ > [!WARNING]
56
+ > This solution implies that all migrations are reversible. The irreversible migrations should be solved manually. At the moment, the gem ignores them. You will see warnings in the terminal for each irreversible migrations.
42
57
 
43
- > **Warning**
44
- > This solution implies that all migrations are reversible. The cases with irreversible migrations should be solved manually. At the moment, these migrations are ignored by the gem and you will see a warning if some migrations can't roll back automatically.
58
+ The gem offers the following rake tasks that can be manually run according to your preferences:
59
+ - `rails db:rollback_branches` - run it to manually rolls back phantom migrations.
60
+ - `rails db:phantom_migrations` - displays a list of phantom migrations.
45
61
 
46
62
  ## Development
47
63
 
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActualDbSchema
4
+ module Commands
5
+ # Base class for all commands
6
+ class Base
7
+ def call
8
+ unless ActualDbSchema.config.fetch(:enabled, true)
9
+ raise "ActualDbSchema is disabled. Set ActualDbSchema.config[:enabled] = true to enable it."
10
+ end
11
+
12
+ if ActiveRecord::Migration.current_version >= 6
13
+ ActiveRecord::Tasks::DatabaseTasks.raise_for_multi_db(command: "db:rollback_branches")
14
+ end
15
+
16
+ call_impl
17
+ end
18
+
19
+ private
20
+
21
+ def call_impl
22
+ raise NotImplementedError
23
+ end
24
+
25
+ def context
26
+ @context ||=
27
+ ActiveRecord::Base.connection.migration_context.tap do |c|
28
+ c.extend(ActualDbSchema::Patches::MigrationContext)
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActualDbSchema
4
+ module Commands
5
+ # Shows the list of phantom migrations
6
+ class List < Base
7
+ private
8
+
9
+ def call_impl
10
+ preambule
11
+ table
12
+ end
13
+
14
+ def indexed_phantom_migrations
15
+ @indexed_phantom_migrations ||= context.migrations.index_by { |m| m.version.to_s }
16
+ end
17
+
18
+ def preambule
19
+ puts "\nPhantom migrations\n\n"
20
+ puts "Below is a list of irrelevant migrations executed in unmerged branches."
21
+ puts "To bring your database schema up to date, the migrations marked as \"up\" should be rolled back."
22
+ puts "\ndatabase: #{ActiveRecord::Base.connection_db_config.database}\n\n"
23
+ puts %(#{"Status".center(8)} #{"Migration ID".ljust(14)} Migration File)
24
+ puts "-" * 50
25
+ end
26
+
27
+ def table
28
+ context.migrations_status.each do |status, version|
29
+ migration = indexed_phantom_migrations[version]
30
+ next unless migration
31
+
32
+ puts %(#{status.center(8)} #{version.to_s.ljust(14)} #{migration.filename.gsub("#{Rails.root}/", "")})
33
+ end
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActualDbSchema
4
+ module Commands
5
+ # Rolls back all phantom migrations
6
+ class Rollback < Base
7
+ private
8
+
9
+ def call_impl
10
+ context.rollback_branches
11
+
12
+ return if ActualDbSchema.failed.empty?
13
+
14
+ puts ""
15
+ puts "[ActualDbSchema] Irreversible migrations were found from other branches. Roll them back or fix manually:"
16
+ puts ""
17
+ puts ActualDbSchema.failed.map { |migration| "- #{migration.filename}" }.join("\n")
18
+ puts ""
19
+ end
20
+ end
21
+ end
22
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActualDbSchema
4
- VERSION = "0.5.0"
4
+ VERSION = "0.6.0"
5
5
  end
@@ -6,6 +6,10 @@ require_relative "actual_db_schema/patches/migration_proxy"
6
6
  require_relative "actual_db_schema/patches/migrator"
7
7
  require_relative "actual_db_schema/patches/migration_context"
8
8
 
9
+ require_relative "actual_db_schema/commands/base"
10
+ require_relative "actual_db_schema/commands/rollback"
11
+ require_relative "actual_db_schema/commands/list"
12
+
9
13
  # The main module definition
10
14
  module ActualDbSchema
11
15
  raise NotImplementedError, "ActualDbSchema is only supported in Rails" unless defined?(Rails)
data/lib/tasks/db.rake CHANGED
@@ -3,24 +3,12 @@
3
3
  namespace :db do
4
4
  desc "Rollback migrations that were run inside not a merged branch."
5
5
  task rollback_branches: :load_config do
6
- unless ActualDbSchema.config.fetch(:enabled, true)
7
- raise "ActualDbSchema is disabled. Set ActualDbSchema.config[:enabled] = true to enable it."
8
- end
9
-
10
- if ActiveRecord::Migration.current_version >= 6
11
- ActiveRecord::Tasks::DatabaseTasks.raise_for_multi_db(command: "db:rollback_branches")
12
- end
6
+ ActualDbSchema::Commands::Rollback.new.call
7
+ end
13
8
 
14
- context = ActiveRecord::Base.connection.migration_context
15
- context.extend(ActualDbSchema::Patches::MigrationContext)
16
- context.rollback_branches
17
- if ActualDbSchema.failed.any?
18
- puts ""
19
- puts "[ActualDbSchema] Irreversible migrations were found from other branches. Roll them back or fix manually:"
20
- puts ""
21
- puts ActualDbSchema.failed.map { |migration| "- #{migration.filename}" }.join("\n")
22
- puts ""
23
- end
9
+ desc "List all phantom migrations - non-relevant migrations that were run inside not a merged branch."
10
+ task phantom_migrations: :load_config do
11
+ ActualDbSchema::Commands::List.new.call
24
12
  end
25
13
 
26
14
  task _dump: :rollback_branches
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actual_db_schema
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrei Kaleshka
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-06 00:00:00.000000000 Z
11
+ date: 2024-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -119,6 +119,9 @@ files:
119
119
  - gemfiles/rails.7.0.gemfile
120
120
  - gemfiles/rails.7.1.gemfile
121
121
  - lib/actual_db_schema.rb
122
+ - lib/actual_db_schema/commands/base.rb
123
+ - lib/actual_db_schema/commands/list.rb
124
+ - lib/actual_db_schema/commands/rollback.rb
122
125
  - lib/actual_db_schema/patches/migration_context.rb
123
126
  - lib/actual_db_schema/patches/migration_proxy.rb
124
127
  - lib/actual_db_schema/patches/migrator.rb