Files
webthink/sql/exportSchema.sh

6 lines
173 B
Bash
Raw Permalink Normal View History

2017-02-07 20:13:14 +00:00
#!/bin/bash
echo ".schema" | sqlite3 ../WebThink.db > createDB.sql
echo "drop table icon;" > prepareIcon.sql
echo ".dump icon" | sqlite3 ../WebThink.db >> prepareIcon.sql