bash
# Step 1: Export the table to a SQL file from source database
sqlite3 source.db ".dump table_name" > table_dump.sql
# Step 2: Import into target database
sqlite3 target.db < table_dump.sql
show column name of specific table
bash
.schema user
how to backup openwebui's user info
bash
tables
user
auth