Sha256: bfd4b2759efa7c1723ed44430730b98b8e7e8b5a1378ca3772a2db47b7387617
Contents?: true
Size: 375 Bytes
Versions: 112
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
112 entries across 112 versions & 1 rubygems