Files
lnd/sqldb/migrations_dev.go
Elle Mouton ffbe4f6ffc sqldb: define schemas for all graph node tables
In this commit, the various SQL schemas required to store graph node
related data is defined. Specifically, the following tables are defined:

- nodes
- node_extra_types
- node_features
- node_addresses
2025-05-27 16:28:37 +02:00

12 lines
188 B
Go

//go:build test_db_postgres || test_db_sqlite
package sqldb
var migrationAdditions = []MigrationConfig{
{
Name: "000007_graph",
Version: 8,
SchemaVersion: 7,
},
}