2026-01-15 09:50:55 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
# Truncate the existing database.
|
|
|
|
|
rm database/origo.db
|
|
|
|
|
# Import the schema for the new database.
|
|
|
|
|
sqlite3 database/origo.db < database/schema.sql
|
2026-01-15 09:59:34 -05:00
|
|
|
|
|
|
|
|
# Check if there is a default content sql file.
|
|
|
|
|
if [ -f database/default-content.sql ]; then
|
|
|
|
|
# Import the default content for the new database.
|
|
|
|
|
sqlite3 database/origo.db < database/default-content.sql
|
|
|
|
|
fi
|