repos / git-pr

a self-hosted git collaboration server
git clone https://github.com/picosh/git-pr.git

commit
02ac4fd
parent
67d8cd1
author
Eric Bower
date
2024-07-19 12:46:18 -0400 EDT
fix(db): re-add empty string
1 files changed,  +2, -0
M db.go
M db.go
+2, -0
1@@ -187,6 +187,8 @@ CREATE TABLE IF NOT EXISTS event_logs (
2 var sqliteMigrations = []string{
3 	"", // migration #0 is reserved for schema initialization
4 	"ALTER TABLE patches ADD COLUMN base_commit_sha TEXT",
5+	// added this by accident
6+	"",
7 }
8 
9 // Open opens a database connection.