Sha256: 57e2d047df76722e769ee68882edfbfb58fa760452448b82058e8d337b105bb1
Contents?: true
Size: 406 Bytes
Versions: 25
Compression:
Stored size: 406 Bytes
Contents
class RemoveKatelloAgentDispatchHistory < ActiveRecord::Migration[6.1] def up drop_table :katello_agent_dispatch_histories end def down create_table :katello_agent_dispatch_histories do |t| t.integer :host_id, null: false, foreign_key: true t.datetime :accepted_at t.string :dynflow_execution_plan_id t.integer :dynflow_step_id t.text :result end end end
Version data entries
25 entries across 25 versions & 1 rubygems