migration adding nickname to user

This commit is contained in:
kikito
2015-08-06 15:53:31 +02:00
parent 44e049e483
commit b848e8d346
2 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddNicknameToUser < ActiveRecord::Migration
def change
add_column :users, :nickname, :string
end
end