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.
假设我想从
case class Link(url:String, auther: String)
至
case class Link(url:String, auther: String, created: DateTime)
但是,我不想删除表并使用 再次创建它DropAllCreate,因为我想保留我的数据。
DropAllCreate
我们应该如何在 SORM 中做到这一点?或者唯一的方法是使用 SQL 进行手动迁移?
是的。手动修改是唯一的方法。