mirror of
https://github.com/dnote/dnote
synced 2026-03-15 15:05:51 +01:00
5 lines
195 B
Bash
Executable file
5 lines
195 B
Bash
Executable file
#!/bin/bash
|
|
# dump_schema.sh dumps the current system's dnote schema to testutils package
|
|
# to be used while setting up tests
|
|
|
|
sqlite3 ~/.dnote/dnote.db .schema > ./testutils/fixtures/schema.sql
|