How to replace the database backend of an existing node? #10150
|
Just as the title describes,I want to replace the database of a certain node with PostgreSQL. |
Answered by
guggero
Aug 12, 2025
Replies: 2 comments 1 reply
|
What is your current database backend? Is it SQLite or |
1 reply
Answer selected by
SevenLiquor
|
@SevenLiquor - I assume you are sorted now? I'll close the discussion in the mean time but feel free to re-open if you need to |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What is your current database backend? Is it SQLite or
bbolt? There islndinitthat allows you to migrate frombboltto any SQL database (in your case Postgres). But there currently is no way to migrate from SQLite to Postgres (and just exporting and re-importing the schema will definitely break things, don't do it!), but we're working on that.