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
This commit is contained in:
Elle Mouton
2025-05-14 16:23:01 +02:00
parent 93a6ab8759
commit ffbe4f6ffc
5 changed files with 136 additions and 1 deletions

View File

@ -2,4 +2,10 @@
package sqldb
var migrationAdditions = []MigrationConfig{}
var migrationAdditions = []MigrationConfig{
{
Name: "000007_graph",
Version: 8,
SchemaVersion: 7,
},
}