remove commented out code

This commit is contained in:
lawl 2021-03-20 20:28:03 +01:00
parent e3e7fd74e0
commit f58c82a3ee
1 changed files with 0 additions and 7 deletions

View File

@ -26,13 +26,6 @@ func createConnection() *sql.DB {
}
func initDatabase() {
/*
CREATE TABLE history(id INTEGER PRIMARY KEY, command varchar(512), timestamp datetime DEFAULT current_timestamp, user varchar(25), hostname varchar(32));
CREATE VIEW count_by_date AS SELECT COUNT(id), STRFTIME('%Y-%m-%d', timestamp) FROM history GROUP BY strftime('%Y-%m-%d', timestamp)
count_by_date("COUNT(id)","STRFTIME('%Y-%m-%d', timestamp)") ;
*/
conn := createConnection()
queryStmt := "CREATE TABLE history(id INTEGER PRIMARY KEY, command varchar(512), timestamp datetime DEFAULT current_timestamp, user varchar(25), hostname varchar(32));\n" +