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