1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 class CreateLogs < ActiveRecord::Migration
7 create_table :logs do |t|
9 t.string :created_by_client
10 t.string :created_by_user
11 t.string :modified_by_client
12 t.string :modified_by_user
22 add_index :logs, :uuid, :unique => true
23 add_index :logs, :object_kind
24 add_index :logs, :object_uuid
25 add_index :logs, :event_type
26 add_index :logs, :event_at
27 add_index :logs, :summary