7 lines
158 B
Bash
7 lines
158 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Truncate the existing database.
|
||
|
|
rm database/origo.db
|
||
|
|
# Import the schema for the new database.
|
||
|
|
sqlite3 database/origo.db < database/schema.sql
|