summaryrefslogtreecommitdiff
path: root/spec/migrations/20210922082019_drop_int4_column_for_events_spec.rb
blob: 412556fc2835a97385783d5994794611239587e9 (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!('drop_int4_column_for_events')

RSpec.describe DropInt4ColumnForEvents do
  let(:events) { table(:events) }

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

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