refactor!: Dir is no longer stored in the database.

BREAKING CHANGE: Dir is now derived from Path rather than stored in the
DB. Your DB will need to be updated.
This commit is contained in:
2025-11-07 10:59:47 -05:00
parent 38a6776b31
commit 0fef74a9bb
2 changed files with 15 additions and 9 deletions

View File

@@ -10,7 +10,8 @@ import (
)
type EnvFile struct {
Path string
Path string
// Dir is derived from Path, and is not stored in the database.
Dir string
Remotes []string // []string
Sha256 string