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