From 71043c5c73edf4e8dcfbcea603bfaaf0e54af346 Mon Sep 17 00:00:00 2001 From: Nico Rey Date: Mon, 28 Sep 2020 21:24:35 -0300 Subject: [PATCH] move database schema to templates folder --- migrate_data.sh | 2 +- panel.sql => templates/webpanel_schema.sql | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename panel.sql => templates/webpanel_schema.sql (100%) diff --git a/migrate_data.sh b/migrate_data.sh index f9501ef..f8b84f7 100644 --- a/migrate_data.sh +++ b/migrate_data.sh @@ -23,7 +23,7 @@ DB_PATH="${NOAA_HOME}/panel.db" # operations are done over the RAMFS # partition cd "${RAMFS_AUDIO}" || exit 1 - sqlite3 < "${NOAA_HOME}/panel.sql" + sqlite3 < "${NOAA_HOME}/templates/webpanel_schema.sql" ) diff --git a/panel.sql b/templates/webpanel_schema.sql similarity index 100% rename from panel.sql rename to templates/webpanel_schema.sql