add name to request

This commit is contained in:
sam
2022-05-25 14:02:29 +04:30
parent 07fcd5fe86
commit c771455197
3 changed files with 10 additions and 3 deletions

View File

@ -0,0 +1,5 @@
class AddNameToMessage < ActiveRecord::Migration[6.0]
def change
add_column :messages, :name, :string
end
end