migrate/doc.go

7 lines
312 B
Go
Raw Permalink Normal View History

2021-06-04 20:57:45 -04:00
package migrate
// migrate is a package for SQL datbase migrations in the spirit of dbstore(rsc.io/dbstore)
// it is intended to keep its footprint small, requiring only an additional table in the database
2021-06-04 20:57:45 -04:00
// there is no rollback support as you should only ever roll forward.
// uses SQL99 compatible SQL only.