mirror of
https://github.com/lldap/lldap.git
synced 2026-07-25 17:58:44 +00:00
docs: fix DB migration, add sqlite migration helper script
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
#! /bin/bash
|
||||
|
||||
tables=("users" "groups" "memberships" "jwt_refresh_storage" "jwt_storage" "password_reset_tokens")
|
||||
echo ".header on"
|
||||
|
||||
for table in ${tables[@]}; do
|
||||
echo ".mode insert $table"
|
||||
echo "select * from $table;"
|
||||
done
|
||||
Reference in New Issue
Block a user