personalized rooms page

This commit is contained in:
Zachary Chai
2016-10-18 13:51:05 -04:00
parent 14ad57d4d1
commit 8693ba5860
8 changed files with 54 additions and 2 deletions

View File

@ -0,0 +1,6 @@
class AddUsernameToUser < ActiveRecord::Migration[5.0]
def change
add_column :users, :username, :string
add_index :users, :username, unique: true
end
end