Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20230411153310_cleanup_bigint_conversion_for_sent_notifications_spec.rb « migrations « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5780aa365da471190cb05676d0a65d252f38cb7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require 'spec_helper'
require_migration!('cleanup_bigint_conversion_for_sent_notifications')

RSpec.describe CleanupBigintConversionForSentNotifications, feature_category: :database do
  let(:sent_notifications) { table(:sent_notifications) }

  it 'correctly migrates up and down' do
    reversible_migration do |migration|
      migration.before -> {
        expect(sent_notifications.column_names).to include('id_convert_to_bigint')
      }

      migration.after -> {
        sent_notifications.reset_column_information
        expect(sent_notifications.column_names).not_to include('id_convert_to_bigint')
      }
    end
  end
end