其他分享
首页 > 其他分享> > RoR - Creating and Modifying Table and Columns

RoR - Creating and Modifying Table and Columns

作者:互联网

自动生成的id 被当作primary key来使用

timestamp method生成 created_at 与 updated_at columns

create_table 和 drop_table 用来生成表与删除表

null:false 表明不能为null

 

rake db:rollback  ---- 返回到上次migration之前的状态

添加与删除列:

add_column :table_name, :column_name, :column_type 

remove_column :table_name, :column_name

 

rake:schema:load 读取schema 

重命名column:

rename_column :table_name, :old_column_name, :new_column_name 

或者 rails g migration rename_make_to_company  =>   rename_column :cars, :make, :company

 

标签:rename,Creating,column,migration,table,Table,RoR,null,name
来源: https://www.cnblogs.com/vixennn/p/10692345.html