20160701044600_create_issues.rb 213 Bytes
Newer Older
annearrobio's avatar
annearrobio committed
1 2 3 4 5 6 7 8 9 10 11
class CreateIssues < ActiveRecord::Migration
  def change
    create_table :issues do |t|
      t.string :title
      t.string :content
      t.string :issue_type

      t.timestamps null: false
    end
  end
end