8784: Fix test for latest firefox.
[arvados.git] / services / api / db / migrate / 20130608053730_create_virtual_machines.rb
1 class CreateVirtualMachines < ActiveRecord::Migration
2   def change
3     create_table :virtual_machines do |t|
4       t.string :uuid, :null => false
5       t.string :owner, :null => false
6       t.string :modified_by_client
7       t.string :modified_by_user
8       t.datetime :modified_at
9       t.string :hostname
10
11       t.timestamps
12     end
13     add_index :virtual_machines, :uuid, :unique => true
14     add_index :virtual_machines, :hostname
15   end
16 end