1 class CreateLogs < ActiveRecord::Migration
3 create_table :logs do |t|
5 t.string :created_by_client
6 t.string :created_by_user
7 t.string :modified_by_client
8 t.string :modified_by_user
18 add_index :logs, :uuid, :unique => true
19 add_index :logs, :object_kind
20 add_index :logs, :object_uuid
21 add_index :logs, :event_type
22 add_index :logs, :event_at
23 add_index :logs, :summary