From 9a457c72af5511e94263e8ac59183f18055f44a6 Mon Sep 17 00:00:00 2001 From: Austin Date: Tue, 21 Mar 2023 15:26:53 +0000 Subject: [PATCH] Remove sqlite_sequence --- docs/database_migration.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/database_migration.md b/docs/database_migration.md index c595938..b96fe0b 100644 --- a/docs/database_migration.md +++ b/docs/database_migration.md @@ -28,13 +28,14 @@ If it succeeds, you can proceed to the next step. ## Create a dump of existing data -We want to dump (almost) all existing values to some file - the exception being the `metadata` table. Be sure to stop/pause LLDAP during this step, as some +We want to dump (almost) all existing values to some file - the exception being the `metadata` table (and sometimes +the `sqlite_sequence`, when it exists). Be sure to stop/pause LLDAP during this step, as some databases (SQLite in this example) will give an error if LLDAP is in the middle of a write. The dump should consist just INSERT statements. There are various ways to do this, but a simple enough way is filtering a whole database dump. For example: ``` -sqlite3 /path/to/lldap/config/users.db .dump | grep "^INSERT" | grep -v "^INSERT INTO metadata" > /path/to/dump.sql +sqlite3 /path/to/lldap/config/users.db .dump | grep "^INSERT" | grep -v "^INSERT INTO metadata" | grep -v "^INSERT INTO sqlite_sequence" > /path/to/dump.sql ``` ## Sanitize data