ruby-on-rails – Rails 4:将多列添加到现有表

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails 4:将多列添加到现有表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道如何将一列添加到现有表中.现在我必须添加许多列到现有的表.有一个较短的方法
add_col1_col2_col3_col4_.._coln_to_tables col1:integer col2:integer etc...

我必须为所有添加的列添加上述内容吗?

解决方法

没有必要你可以做

假设TableName是用户

rails g migration AddColumnsToUser col1:integer col2:integer .. etc.
原文链接:https://www.f2er.com/ruby/272570.html

猜你在找的Ruby相关文章