13 lines
249 B
Ruby
13 lines
249 B
Ruby
|
# 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
|