migrations

This commit is contained in:
2025-02-06 12:41:54 -05:00
parent 87f408efb5
commit b177e311e4
4 changed files with 74 additions and 2 deletions

View File

@@ -1,7 +1,11 @@
package main
import "fmt"
import (
"fmt"
"gitea.michaelthomson.dev/mthomson/habits/internal/migrate"
)
func main() {
fmt.Println("Hello, world")
migrate.Migrate();
}