init comments

This commit is contained in:
Mark Moser
2017-02-10 12:03:50 -06:00
parent 37f6e49592
commit 9c2b53aa79
8 changed files with 130 additions and 2 deletions

View File

@ -0,0 +1,12 @@
# frozen_string_literal: true
class CreateQuizComments < ActiveRecord::Migration[5.0]
def change
create_table :quiz_comments do |t|
t.integer :user_id
t.string :test_hash
t.text :message
t.timestamps
end
end
end