2776: Started adding KeepServices model.
[arvados.git] / services / api / db / migrate / 20140519205916_create_keep_services.rb
1 class CreateKeepServices < ActiveRecord::Migration
2   def change
3     create_table :keep_services do |t|
4       t.string :uuid, :null => false
5       t.string :owner_uuid, :null => false
6       t.string :modified_by_client_uuid
7       t.string :modified_by_user_uuid
8       t.datetime :modified_at
9       t.string   :service_host
10       t.integer  :service_port
11       t.boolean  :service_ssl_flag
12       t.string   :service_type
13
14       t.timestamps
15     end
16     add_index :keep_services, :uuid, :unique => true
17   end
18 end