Sha256: 1b445d2d896cd242f6c5e1f186c56a123a803d41924e309a8af011fa851b760f
Contents?: true
Size: 441 Bytes
Versions: 126
Compression:
Stored size: 441 Bytes
Contents
Sequel.migration do up do # The danger with this migration is that a pact publication created by an old node will be lost rows = from(:latest_pact_publications_by_consumer_versions).select(:consumer_id, :consumer_version_id, :provider_id, :id, :pact_version_id) from(:latest_pact_publication_ids_for_consumer_versions).insert(rows) end down do from(:latest_pact_publication_ids_for_consumer_versions).delete end end
Version data entries
126 entries across 126 versions & 1 rubygems