Sha256: 5b17cf1deec9fcd8f374f5aaeb5ae1a7cfd780bff642093b4e1999adb97cfb6c
Contents?: true
Size: 519 Bytes
Versions: 40
Compression:
Stored size: 519 Bytes
Contents
class CreateEasyMLEvents < ActiveRecord::Migration[<%= ActiveRecord::Migration.current_version %>] def change create_table :easy_ml_events do |t| t.string :name, null: false t.string :status, null: false t.string :eventable_type t.bigint :eventable_id t.text :stacktrace t.timestamps t.index :name t.index :status t.index :eventable_type t.index :eventable_id t.index :created_at t.index [:eventable_type, :eventable_id] end end end
Version data entries
40 entries across 40 versions & 1 rubygems