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.
Database.Persist 似乎与索引无关。这没关系,我可以创建自己的索引,但是在添加/删除字段时,通用 SQL 迁移似乎会创建和删除表。这也具有删除索引的效果。
是否有推荐的方法来确保它们在数据库迁移中幸存下来?
只有 SQLite3 后端应该删除表,PostgreSQL 和 MySQL 都提供了足够强大的 ALTER TABLE 命令来避免这种情况。所以索引应该只对 SQLite3 丢失。如果您在生产中使用 SQLite3(不推荐),您有两种选择: