Sha256: c5c894667b8569a87d9f02c618bcb0ef0be15a39f92b934c114ea36627dc6c5d
Contents?: true
Size: 236 Bytes
Versions: 13
Compression:
Stored size: 236 Bytes
Contents
class ChangeExitStatusToUnsignedTinyint < ActiveRecord::Migration[5.0] def up change_column :executions, :exit_status, :integer, limit: 2 end def down change_column :executions, :exit_status, :integer, limit: 1 end end
Version data entries
13 entries across 13 versions & 1 rubygems