mirror of
https://github.com/lldap/lldap.git
synced 2024-11-24 16:47:01 +00:00
70146e0b70
First step of #67.
9 lines
318 B
Bash
9 lines
318 B
Bash
#! /bin/bash
|
|
|
|
tables=("users" "groups" "memberships" "jwt_refresh_storage" "jwt_storage" "password_reset_tokens" "group_attribute_schema" "group_attributes" "user_attribute_schema" "user_attributes")
|
|
echo ".header on"
|
|
|
|
for table in ${tables[@]}; do
|
|
echo ".mode insert $table"
|
|
echo "select * from $table;"
|
|
done
|