Handle not ready repos
[gitorious.git] / db / migrate / 20131125194447_create_issues_issues.issues.rb
bloba8976c8b336bf5651c5c133bc93acb0e3191e17c
1 # This migration comes from issues (originally 20131120190218)
2 class CreateIssuesIssues < ActiveRecord::Migration
3   def change
4     create_table :issues_issues do |t|
5       t.integer :id
6       t.string :state, :null => false
7       t.integer :issue_id, :null => false
8       t.integer :project_id, :null => false
9       t.integer :user_id, :null => false
10       t.string :title, :null => false
11       t.text :description
13       t.timestamps
14     end
16     add_index :issues_issues, [:issue_id, :project_id], :unique => true
17     add_index :issues_issues, [:user_id, :project_id]
18   end
19 end