使用什么进行martini迁移?

huangapple go评论83阅读模式
英文:

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服务的辅助工具。如果你想要数据库迁移,或者根本需要数据库,可以使用第三方包。

一个示例的工具栈可能包括:

  • goose 用于创建迁移
  • gorp 用于数据库对象层

这个设置或者完全不同的设置,例如使用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:

  • goose for creating migrations
  • gorp for a database object layer

This or a completely different setup, e.g. using Go's standard database package, can be used with martini.

huangapple
  • 本文由 发表于 2014年6月4日 02:18:52
  • 转载请务必保留本文链接:https://go.coder-hub.com/24022208.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定