Sha256: bc4859c4c50db88fae41a27650e7bb61cc62b7e30f3afd70f89a2b54a2a53b9c
Contents?: true
Size: 390 Bytes
Versions: 27
Compression:
Stored size: 390 Bytes
Contents
class AddHostToReport < ActiveRecord::Migration[5.2] def up add_column :preupgrade_report_entries, :host_id, :integer change_column :preupgrade_report_entries, :host_id, :integer, null: false add_index :preupgrade_report_entries, :host_id end def down remove_index :preupgrade_report_entries, :host_id remove_column :preupgrade_report_entries, :host_id end end
Version data entries
27 entries across 27 versions & 1 rubygems