Sha256: ed37680ddbe39627df5d21f98feef3fb382e36181cb4d2469e6430ea60ef562c
Contents?: true
Size: 375 Bytes
Versions: 44
Compression:
Stored size: 375 Bytes
Contents
require "digest/sha1" require_relative "migration_helper" Sequel.migration do up do PactBroker::MigrationHelper.with_mysql do run("SET FOREIGN_KEY_CHECKS = 0") end alter_table(:pacts) do set_column_not_null(:pact_version_content_sha) end PactBroker::MigrationHelper.with_mysql do run("SET FOREIGN_KEY_CHECKS = 1") end end end
Version data entries
44 entries across 44 versions & 1 rubygems