Skip to content

Commit

Permalink
Merge pull request #1296 from alphagov/dependabot/bundler/rubocop-gov…
Browse files Browse the repository at this point in the history
…uk-5.0.2

Bump rubocop-govuk from 5.0.1 to 5.0.2
  • Loading branch information
yndajas authored Jul 4, 2024
2 parents c0bdc7f + 8b9e0e0 commit 3b8f12c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ GEM
mime-types-data (3.2024.0604)
mini_mime (1.1.5)
mini_portile2 (2.8.7)
minitest (5.24.0)
minitest (5.24.1)
msgpack (1.7.2)
multi_xml (0.6.0)
mutex_m (0.2.0)
Expand Down Expand Up @@ -606,14 +606,14 @@ GEM
parser (>= 3.3.1.0)
rubocop-capybara (2.21.0)
rubocop (~> 1.41)
rubocop-govuk (5.0.1)
rubocop-govuk (5.0.2)
rubocop (= 1.64.1)
rubocop-ast (= 1.31.3)
rubocop-capybara (= 2.21.0)
rubocop-rails (= 2.25.0)
rubocop-rails (= 2.25.1)
rubocop-rake (= 0.6.0)
rubocop-rspec (= 3.0.1)
rubocop-rails (2.25.0)
rubocop-rails (2.25.1)
activesupport (>= 4.2.0)
rack (>= 1.1)
rubocop (>= 1.33.0, < 2.0)
Expand Down
6 changes: 3 additions & 3 deletions db/migrate/20230830093643_allow_null_timestamps.rb
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
class AllowNullTimestamps < ActiveRecord::Migration[7.0]
def change
change_column_null :content_items, :created_at, true
change_column_null :content_items, :created_at, true # rubocop:disable Rails/BulkChangeTable
change_column_null :content_items, :updated_at, true

change_column_null :publish_intents, :created_at, true
change_column_null :publish_intents, :created_at, true # rubocop:disable Rails/BulkChangeTable
change_column_null :publish_intents, :updated_at, true

change_column_null :scheduled_publishing_log_entries, :created_at, true
change_column_null :scheduled_publishing_log_entries, :created_at, true # rubocop:disable Rails/BulkChangeTable
change_column_null :scheduled_publishing_log_entries, :updated_at, true
end
end

0 comments on commit 3b8f12c

Please sign in to comment.