Skip to content

Commit

Permalink
fix(mysql): increase size of event_context column
Browse files Browse the repository at this point in the history
  • Loading branch information
bethesque committed Sep 28, 2021
1 parent 56aaa9f commit c159641
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions db/migrations/20210929_increase_event_context_column_size.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
require_relative "migration_helper"
include PactBroker::MigrationHelper

Sequel.migration do
up do
if mysql?
run("ALTER TABLE triggered_webhooks CHANGE event_context event_context mediumtext")
end
end

down do

end
end

0 comments on commit c159641

Please sign in to comment.