1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 class CreateNodes < ActiveRecord::Migration[4.2]
7 create_table :nodes do |t|
9 t.string :created_by_client
10 t.string :created_by_user
11 t.datetime :created_at
12 t.string :modified_by_client
13 t.string :modified_by_user
14 t.datetime :modified_at
15 t.integer :slot_number
19 t.datetime :first_ping_at
20 t.datetime :last_ping_at
25 add_index :nodes, :uuid, :unique => true
26 add_index :nodes, :slot_number, :unique => true
27 add_index :nodes, :hostname, :unique => true