MitratorDotNet (Migrator.Net) - 我可以仅使用裸 SQL 向上/向下迁移文件吗?
我可以使用 migrator.net 裸迁移框架并仅使用一组 SQL 文件来进行升级/降级吗?即仅使用框架来检查数据库版本以及要运行哪些脚本等?
谢谢
Could I use migrator.net bare migration framework and just have a set of SQL files to do the upgrade/downgrade? i.e. just use the framework to check database version and which scripts to run etc?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。我有 sql 和代码迁移的混合。我使用 sql 文件的迁移看起来像:
我在目录 (SqlScripts) 中有两个文件“createbaredb.sql”和“dropbaredb.sql”,并在文件属性窗格中设置为“嵌入式资源”。
Yes. I have a mixture of sql and code migrations. My migration which uses sql files looks something like:
Where I have two files 'createbaredb.sql' and 'dropbaredb.sql' in a directory (SqlScripts) and set as 'Embedded Resource' in the file property pane.