From f48bde1e61dba3124c0e5daecdd1d743bd9b8e8f Mon Sep 17 00:00:00 2001 From: dtookey Date: Wed, 4 May 2022 11:53:15 -0400 Subject: [PATCH] Debugging new schema --- src/projectInsight/insight-database.go | 2 +- ...t-timeentry-table.sql => create-insight-timeEntry-table.sql} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/sql/{create-insight-timeentry-table.sql => create-insight-timeEntry-table.sql} (100%) diff --git a/src/projectInsight/insight-database.go b/src/projectInsight/insight-database.go index 5959004..d79d844 100644 --- a/src/projectInsight/insight-database.go +++ b/src/projectInsight/insight-database.go @@ -59,7 +59,7 @@ func NewDBConnection() *InsightDBConnector { } func (c *InsightDBConnector) CreateTables() { - tableCreationScripts := []string{"create-insight-user-table.sql", "create-insight-timeentry-table.sql"} + tableCreationScripts := []string{"create-insight-user-table.sql", "create-insight-timeEntry-table.sql"} for _, scriptName := range tableCreationScripts { c.ExecuteSqlScript(InsightDatabaseName, scriptName) diff --git a/src/sql/create-insight-timeentry-table.sql b/src/sql/create-insight-timeEntry-table.sql similarity index 100% rename from src/sql/create-insight-timeentry-table.sql rename to src/sql/create-insight-timeEntry-table.sql