]> git.openstreetmap.org Git - rails.git/blob - db/migrate/20150526130032_create_issue_comments.rb
92b328f9ab4cd0e9685d5610ec1f0f2c80efd3da
[rails.git] / db / migrate / 20150526130032_create_issue_comments.rb
1 class CreateIssueComments < ActiveRecord::Migration
2   def change
3     create_table :issue_comments do |t|
4       t.integer :issue_id
5       t.integer :user_id
6       t.text :body
7       t.datetime :created_at
8
9       t.timestamps null: false
10     end
11   end
12 end