Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经将我的用户播种到数据库中,但现在我想更改其中一个字段。看起来,就像迁移一样,我不能只编辑文件并运行rake db:seed. 这似乎并没有改变任何东西。如何编辑我已经播种的内容?谢谢!
rake db:seed
您可以使用控制台来更改您已经播种或已经在您的数据库中的数据。如果需要更改大量数据,则可以编写迁移以更改数据以及表结构。
使用控制台
rails c > u = User.last > u.first_name = "BoyGeorge" > u.save