Sha256: 24bc251e0a103c9d3dfb1a2a457e38a978c10edc9d1f4a80211a37f21091dec4
Contents?: true
Size: 336 Bytes
Versions: 18
Compression:
Stored size: 336 Bytes
Contents
class AddUuidColumnToMachineRunnerInvocations < ActiveRecord::Migration def up execute <<-SQL ALTER TABLE #{Naf.schema_name}.machine_runner_invocations ADD COLUMN uuid text unique; SQL end def down execute <<-SQL ALTER TABLE #{Naf.schema_name}.machine_runner_invocations DROP COLUMN uuid; SQL end end
Version data entries
18 entries across 18 versions & 1 rubygems