Historically, database migrations were a facet of web development that’d cause me to reach for a third-party library. I eventually discovered, however, that handing migrations is actually quite simple if you don’t need many features. At a high level, the process is as follows: list out the migration files, check which ones are missing, then apply them in order (each within a transaction). This whole workflow can be implemented in as few as ~100 lines of readable code!
The Steps Link to heading
The process of analyzing and applying migrations is actually quite straightforward. First you must determine which migrations should be applied… then apply them! Not too fussy, right?
In reality, there is a bit more nuance to it (but not too much). Here is a finer-grained list of the necessary steps:
- Ensure the “migration” table exists.
- This table tracks which migrations have already been applied.
- List migrations that have already been applied.
- These come from the “migration” table.
- List migrations that should be applied.
- These come from a project directory (and can be embedded).
- Be sure to name your migrations with an ascending order: either simple numbers (
0001
,0002
, etc) or timestamps.
- Determine missing migrations.
- Sort missing migrations to preserve order.
- For each missing migration:
- Begin a transaction.
- Apply the migration.
- Update the “migration” table.
- Commit the transaction.
That’s it! While certainly not the shortest list of steps, I find it to be quite manageable. Furthermore, writing this code saves me from having to introduce an unnecessary (and possibly complex) dependency into my project.
The Code Link to heading
Here is the code in its entirety (you can check out the real thing in the Bloggulus source code).
func Migrate(conn Conn, files fs.FS) ([]string, error) {
ctx := context.Background()
// 1. Ensure the "migration" table exists.
_, err := conn.Exec(ctx, `
CREATE TABLE IF NOT EXISTS migration (
id UUID DEFAULT gen_random_uuid() PRIMARY KEY,
name TEXT NOT NULL UNIQUE
)`)
if err != nil {
return nil, err
}
// 2. List migrations that have already been applied.
rows, err := conn.Query(ctx, "SELECT name FROM migration")
if err != nil {
return nil, err
}
defer rows.Close()
existing := make(map[string]bool)
for rows.Next() {
var name string
err = rows.Scan(&name)
if err != nil {
return nil, err
}
existing[name] = true
}
// 3. List migrations that should be applied.
subdir, _ := fs.Sub(files, "migrations")
migrations, err := fs.ReadDir(subdir, ".")
if err != nil {
return nil, err
}
// 4. Determine missing migrations.
var missing []string
for _, migration := range migrations {
name := migration.Name()
if _, ok := existing[name]; !ok {
missing = append(missing, name)
}
}
// 5. Sort missing migrations to preserve order.
sort.Strings(missing)
// 6. For each missing migration:
var applied []string
for _, name := range missing {
sql, err := fs.ReadFile(subdir, name)
if err != nil {
return nil, err
}
// 1. Begin a transaction.
tx, err := conn.Begin(context.Background())
if err != nil {
return nil, err
}
defer tx.Rollback(context.Background())
// 2. Apply the migration.
_, err = tx.Exec(ctx, string(sql))
if err != nil {
return nil, err
}
// 3. Update the "migration" table.
_, err = tx.Exec(ctx, "INSERT INTO migration (name) VALUES ($1)", name)
if err != nil {
return nil, err
}
// 4. Commit the transaction.
err = tx.Commit(context.Background())
if err != nil {
return nil, err
}
applied = append(applied, name)
}
return applied, nil
}
Conclusion Link to heading
Should you study this code, understand how it works, and roll your own migrations? Or should you go for one of the existing, popular libraries (like golang-migrate or goose)? The decision is ultimately up to you. I chose the former approach back in January, 2021 and it hasn’t let me down yet (in terms of both features and execution). Sure, I’m missing some things like “down” migrations and rollbacks, but I haven’t needed them yet.
Using more code than the current problem requires (often via a dependency) feels unnecessary to me. I want to understand how my system works and not be beholden to another library’s code and documentation (if I can avoid it). Perhaps this is too Not Invented Here of me, but again: this approach has been successful and has met all of my migration needs for years. I think that means I made the right call for the scale of projects that I often work with.
Thanks for reading!