Sha256: 14dfa663394f0ef752cdd4635a4817bc1baa56faaa0f89c087868e197578d75f

Contents?: true

Size: 737 Bytes

Versions: 4

Compression:

Stored size: 737 Bytes

Contents

class Phobos01CreateEvents < ActiveRecord::Migration[<%= ActiveRecord::Migration.current_version %>]
  def up
    create_table :phobos_db_checkpoint_events do |t|
      t.string    :topic,         index: true
      t.string    :group_id,      index: true
      t.string    :entity_id,     index: true
      t.timestamp :event_time,    index: true
      t.string    :event_type,    index: true
      t.string    :event_version, index: true
      t.string    :checksum,      index: true
      t.json      :payload
    end

    add_index :phobos_db_checkpoint_events, [:topic, :group_id, :checksum], name: :index_phobos_db_checkpoint_events_on_topic_group_id_checksum
  end

  def down
    drop_table :phobos_db_checkpoint_events
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
phobos_db_checkpoint-2.2.0 templates/migrate/phobos_01_create_events.rb.erb
phobos_db_checkpoint-2.1.0 templates/migrate/phobos_01_create_events.rb.erb
phobos_db_checkpoint-2.0.0 templates/migrate/phobos_01_create_events.rb.erb
phobos_db_checkpoint-2.0.0.rc1 templates/migrate/phobos_01_create_events.rb.erb