rails 新建user的phonenumber字段
Posted yulongzhou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了rails 新建user的phonenumber字段相关的知识,希望对你有一定的参考价值。
1、新建字段
//rails g migration add_字段名_to_表名 字段名:字段类型 rails g migration add_title_to_contents title:string
2、
rails db:migrate
3、/views/users/index.html.erb
对应位置添加 <td><%= user phonenumr%></td> 对应位置添加 <th>phontnum<th>
4、/users_controller.rb
def user_params params.require(:user).permit(:name, :email,:QQ,:Signature,:phonenum)//phonenum为新增 end
5、_form.html.erb添加相应内容
6、git push heroku&&heroku run rails db:migrate
以上是关于rails 新建user的phonenumber字段的主要内容,如果未能解决你的问题,请参考以下文章