我知道我可以用这一行轻松创建模型。现在假设我想在用户名上添加一个索引。如何在不手动编辑迁移文件的情况下用一行来做到这一点?
script/rails generate model TwitterUser username:string num_followers:integer num_following:integer bio:string location:string image:string num_tweets:integer website:string
我知道我可以用这一行轻松创建模型。现在假设我想在用户名上添加一个索引。如何在不手动编辑迁移文件的情况下用一行来做到这一点?
script/rails generate model TwitterUser username:string num_followers:integer num_following:integer bio:string location:string image:string num_tweets:integer website:string