Skip to content

Commit

Permalink
Fix change_table spec
Browse files Browse the repository at this point in the history
The intent was to use change table, instead it was using
  • Loading branch information
tagliala committed Dec 6, 2024
1 parent 371c188 commit e62bbf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/chrono_model/adapter/migrations_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@

with_plain_table do
before do
adapter.change_table table do |_t|
adapter.add_column table, :frupper, :string
adapter.change_table table do |t|
t.string :frupper
end
end

Expand Down

0 comments on commit e62bbf7

Please sign in to comment.