diff options
Diffstat (limited to 'db/migrate/20190403141604_add_comment_to_invites.rb')
-rw-r--r-- | db/migrate/20190403141604_add_comment_to_invites.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20190403141604_add_comment_to_invites.rb b/db/migrate/20190403141604_add_comment_to_invites.rb new file mode 100644 index 000000000..f0d7b1dcd --- /dev/null +++ b/db/migrate/20190403141604_add_comment_to_invites.rb @@ -0,0 +1,5 @@ +class AddCommentToInvites < ActiveRecord::Migration[5.2] + def change + add_column :invites, :comment, :text + end +end |