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