Handle not ready repos
[gitorious.git] / db / migrate / 019_create_comments.rb
blobd4c75ad51eb74af4d83ffc8a54277f9fe327b65d
1 class CreateComments < ActiveRecord::Migration
2   def self.up
3     create_table :comments do |t|
4       t.integer :user_id, :null => false
5       t.integer :repository_id, :null => false
6       t.string  :sha1, :null => true
7       t.text    :body
8       t.timestamps
9     end
10     add_index :comments, :user_id
11     add_index :comments, :repository_id
12     add_index :comments, :sha1
13   end
15   def self.down
16     drop_table :comments
17   end
18 end