8784: Fix test for latest firefox.
[arvados.git] / services / api / db / migrate / 20130326173804_create_commits.rb
1 class CreateCommits < ActiveRecord::Migration
2   def change
3     create_table :commits do |t|
4       t.string :repository_name
5       t.string :sha1
6       t.string :message
7
8       t.timestamps
9     end
10     add_index :commits, [:repository_name, :sha1], :unique => true
11   end
12 end