Skip to content

Commit 727f933

Browse files
Support active record schema migration changes introduced with Rails 7.1 (#17)
* update appraisals to handle rails 7 and 7.1 versions * adapt to support active record schema migration 7.1 * bump version for rails 7.1 support * Update version.rb * run rails 7 tests with ruby 2.7+ --------- Co-authored-by: Sergey A. Glukhov <[email protected]>
1 parent 3dd3d60 commit 727f933

File tree

5 files changed

+62
-9
lines changed

5 files changed

+62
-9
lines changed

.rubocop.yml

+6
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,18 @@ Gemspec/RequiredRubyVersion:
1010
Layout/TrailingEmptyLines:
1111
Enabled: false
1212

13+
Metrics/AbcSize:
14+
Enabled: false
15+
1316
Metrics/BlockLength:
1417
Enabled: false
1518

1619
Metrics/LineLength:
1720
Max: 120
1821

22+
Metrics/MethodLength:
23+
Enabled: false
24+
1925
Naming/FileName:
2026
Exclude:
2127
- lib/rails-data-migrations.rb

Appraisals

+12
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,15 @@ if ruby_version >= Gem::Version.new('2.5.0')
4040
gem 'sqlite3', '~> 1.4.0'
4141
end
4242
end
43+
44+
if ruby_version >= Gem::Version.new('2.7.0')
45+
appraise 'rails-7.0' do
46+
gem 'rails', '~> 7.0.0'
47+
gem 'sqlite3', '~> 1.4.0'
48+
end
49+
50+
appraise 'rails-7.1' do
51+
gem 'rails', '~> 7.1.0'
52+
gem 'sqlite3', '~> 1.4.0'
53+
end
54+
end

lib/rails_data_migrations/log_entry.rb

+25-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,33 @@
11
# frozen_string_literal: true
22

33
module RailsDataMigrations
4-
class LogEntry < ::ActiveRecord::SchemaMigration
5-
class << self
6-
def table_name
7-
"#{ActiveRecord::Base.table_name_prefix}data_migrations#{ActiveRecord::Base.table_name_suffix}"
4+
module SharedMethods
5+
def table_name
6+
"#{ActiveRecord::Base.table_name_prefix}data_migrations#{ActiveRecord::Base.table_name_suffix}"
7+
end
8+
9+
def index_name
10+
"#{table_name_prefix}unique_data_migrations#{table_name_suffix}"
11+
end
12+
end
13+
14+
if Gem::Version.new('7.1.0') >= Gem::Version.new(::ActiveRecord.version)
15+
class LogEntry < ::ActiveRecord::SchemaMigration
16+
class << self
17+
include SharedMethods
818
end
19+
end
20+
else
21+
class LogEntry < ::ActiveRecord::Base
22+
class << self
23+
include SharedMethods
24+
def create_table
25+
::ActiveRecord::SchemaMigration.define_method(:table_name) do
26+
"#{::ActiveRecord::Base.table_name_prefix}data_migrations#{::ActiveRecord::Base.table_name_suffix}"
27+
end
928

10-
def index_name
11-
"#{table_name_prefix}unique_data_migrations#{table_name_suffix}"
29+
::ActiveRecord::Base.connection.schema_migration.create_table
30+
end
1231
end
1332
end
1433
end

lib/rails_data_migrations/migrator.rb

+18-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,16 @@ def rails_5_2?
4848
Rails::VERSION::MAJOR > 5 || (Rails::VERSION::MAJOR == 5 && Rails::VERSION::MINOR >= 2)
4949
end
5050

51+
def rails_7_1?
52+
Rails::VERSION::MAJOR == 7 && Rails::VERSION::MINOR >= 1
53+
end
54+
5155
def list_migrations
52-
if rails_6_0?
56+
if rails_7_1?
57+
::ActiveRecord::MigrationContext.new(
58+
migrations_path, ::ActiveRecord::Base.connection.schema_migration
59+
).migrations
60+
elsif rails_6_0?
5361
::ActiveRecord::MigrationContext.new(migrations_path, ::ActiveRecord::SchemaMigration).migrations
5462
elsif rails_5_2?
5563
::ActiveRecord::MigrationContext.new(migrations_path).migrations
@@ -68,7 +76,15 @@ def list_pending_migrations
6876
end
6977

7078
def run_migration(direction, migrations_path, version)
71-
if rails_6_0?
79+
if rails_7_1?
80+
new(
81+
direction,
82+
list_migrations,
83+
::ActiveRecord::Base.connection.schema_migration,
84+
::ActiveRecord::InternalMetadata.new(ActiveRecord::Base.connection),
85+
version
86+
).run
87+
elsif rails_6_0?
7288
new(direction, list_migrations, ::ActiveRecord::SchemaMigration, version).run
7389
elsif rails_5_2?
7490
new(direction, list_migrations, version).run

lib/rails_data_migrations/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module RailsDataMigrations
4-
VERSION = '1.2.0'
4+
VERSION = '1.3.0'
55
end

0 commit comments

Comments
 (0)