mirror of
https://github.com/dnote/dnote
synced 2026-03-14 22:45:50 +01:00
5 lines
121 B
Bash
Executable file
5 lines
121 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# dump_schema.sh dumps the current system's dnote schema
|
|
set -eux
|
|
|
|
sqlite3 ~/.dnote/dnote.db .schema
|