Sha256: fc03484d7ac6be2cbc550b77e87a163bc338ab28ba3843c3df4fcefae2aaa00d

Contents?: true

Size: 606 Bytes

Versions: 55

Compression:

Stored size: 606 Bytes

Contents

class CreateTemplateInvocationEvents < ActiveRecord::Migration[6.1]
  def change
    # rubocop:disable Rails/CreateTableWithTimestamps
    create_table :template_invocation_events do |t|
      t.references :template_invocation, :null => false
      t.timestamp :timestamp, :null => false
      t.string :event_type, :null => false
      t.string :event, :null => false
      t.string :meta

      t.index [:template_invocation_id, :timestamp, :event_type],
        unique: true,
        name: 'unique_template_invocation_events_index'
    end
    # rubocop:enable Rails/CreateTableWithTimestamps
  end
end

Version data entries

55 entries across 55 versions & 1 rubygems

Version Path
foreman_remote_execution-13.2.8 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-15.0.2 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-15.0.1 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-13.2.7 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-15.0.0 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-14.1.4 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-14.1.3 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-14.1.2 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-14.1.1 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-14.1.0 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-14.0.2 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-14.0.1 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-13.2.6 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-14.0.0 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-13.2.5 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-13.2.4 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-13.2.3 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-13.2.2 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-12.0.7 db/migrate/20220713095705_create_template_invocation_events.rb
foreman_remote_execution-13.2.1 db/migrate/20220713095705_create_template_invocation_events.rb