8784: Fix test for latest firefox.
[arvados.git] / services / api / db / migrate / 20130610202538_create_repositories.rb
1 class CreateRepositories < ActiveRecord::Migration
2   def change
3     create_table :repositories 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 :name
10       t.string :fetch_url
11       t.string :push_url
12
13       t.timestamps
14     end
15     add_index :repositories, :uuid, :unique => true
16     add_index :repositories, :name
17   end
18 end