Sha256: b8767ad5f4c540af58747f974ba5a4208ccf56824e9e10e4d2a44c6cf0835c17
Contents?: true
Size: 281 Bytes
Versions: 18
Compression:
Stored size: 281 Bytes
Contents
class MakeTicketUuidNotNull < ActiveRecord::Migration def up # Every ticket must have a uuid for this to work. # Run `rake backfill_ticket_uuids` first change_column_null :tickets, :uuid, false end def down change_column_null :tickets, :uuid, true end end
Version data entries
18 entries across 18 versions & 1 rubygems