英文:
What is being used for migrations with martini?
问题
在Martini世界中,用于数据库迁移的工具是什么?
英文:
I'm trying to learn martini, coming from Rails. What's being used for database migrations in the martini world?
答案1
得分: 4
在Martini中没有这样的东西。它只是一个用于编写Web服务的辅助工具。如果你想要数据库迁移,或者根本需要数据库,可以使用第三方包。
一个示例的工具栈可能包括:
这个设置或者完全不同的设置,例如使用Go的标准数据库包,都可以与Martini一起使用。
英文:
There is no such thing in martini. It is just a helper for writing web services. If you want database migrations, or a database at all, use third-party packages.
An example tool stack would be:
This or a completely different setup, e.g. using Go's standard database package, can be used with martini.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论