]> git.openstreetmap.org Git - rails.git/blob - db/migrate/20160822153115_create_issue_comments.rb
725560787534b9bf0e76ed59e60dfcd7ddcf5cf2
[rails.git] / db / migrate / 20160822153115_create_issue_comments.rb
1 class CreateIssueComments < ActiveRecord::Migration[5.0]
2   def change
3     create_table :issue_comments do |t|
4       t.integer :issue_id, :null => false
5       t.integer :commenter_user_id, :null => false
6       t.text :body, :null => false
7       t.boolean :reassign
8       t.timestamps :null => false
9     end
10
11     add_foreign_key :issue_comments, :issues, :name => "issue_comments_issue_id_fkey", :on_delete => :cascade
12     add_foreign_key :issue_comments, :users, :column => :commenter_user_id, :name => "issue_comments_commenter_user_id", :on_delete => :cascade
13
14     add_index :issue_comments, :commenter_user_id
15     add_index :issue_comments, :issue_id
16   end
17 end