8784: Fix test for latest firefox.
[arvados.git] / services / api / db / migrate / 20130123180224_create_api_clients.rb
1 class CreateApiClients < ActiveRecord::Migration
2   def change
3     create_table :api_clients do |t|
4       t.string :uuid
5       t.string :created_by_client
6       t.string :created_by_user
7       t.string :modified_by_client
8       t.string :modified_by_user
9       t.datetime :modified_at
10       t.string :name
11       t.string :url_prefix
12
13       t.timestamps
14     end
15     add_index :api_clients, :uuid, :unique => true
16   end
17 end