Sha256: d2ea38af765ffdbcff85dd7ece612f2aa2b97b764232d916be384170d0f06467
Contents?: true
Size: 483 Bytes
Versions: 53
Compression:
Stored size: 483 Bytes
Contents
class ChangeErrataTimestampsToDates < ActiveRecord::Migration def up change_column(:katello_errata, :issued, :date) change_column(:katello_errata, :updated, :date) add_index(:katello_errata, :issued) add_index(:katello_errata, :updated) end def down change_column(:katello_errata, :issued, :timestamp) change_column(:katello_errata, :updated, :timestamp) remove_index(:katello_errata, :issued) remove_index(:katello_errata, :updated) end end
Version data entries
53 entries across 53 versions & 1 rubygems