Skip to content

Commit 55806a8

Browse files
committed
lnd: make the payment schema migration available for testing
We allow the migration of the payment schema to be applied when the test_native_sql is active to make sure the tables are properly contructed.
1 parent fefd5c1 commit 55806a8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

sqldb/migrations_dev.go

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,10 @@
22

33
package sqldb
44

5-
var migrationAdditions []MigrationConfig
5+
var migrationAdditions = []MigrationConfig{
6+
{
7+
Name: "000009_payments",
8+
Version: 11,
9+
SchemaVersion: 9,
10+
},
11+
}

0 commit comments

Comments
 (0)