20190403141604_add_comment_to_invites.rb 152 B

1234567
  1. # frozen_string_literal: true
  2. class AddCommentToInvites < ActiveRecord::Migration[5.2]
  3. def change
  4. add_column :invites, :comment, :text
  5. end
  6. end