Added password field to Group model

• Added:
- password field to Group model
This commit is contained in:
mgabdev
2020-09-02 17:56:16 -05:00
parent baee8d1141
commit cc224d7659
3 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddPasswordToGroups < ActiveRecord::Migration[5.2]
def change
add_column :groups, :password, :string
end
end