8784: Fix test for latest firefox.
[arvados.git] / services / api / db / migrate / 20121016005009_create_collections.rb
1 class CreateCollections < ActiveRecord::Migration
2   def change
3     create_table :collections do |t|
4       t.string :locator
5       t.string :create_by_client
6       t.string :created_by_user
7       t.datetime :created_at
8       t.string :modified_by_client
9       t.string :modified_by_user
10       t.datetime :modified_at
11       t.string :portable_data_hash
12       t.string :name
13       t.integer :redundancy
14       t.string :redundancy_confirmed_by_client
15       t.datetime :redundancy_confirmed_at
16       t.integer :redundancy_confirmed_as
17
18       t.timestamps
19     end
20   end
21 end