1
0
Derivar 0

remove commented out code

Este cometimento está contido em:
lawl 2021-03-20 20:28:03 +01:00
ascendente e3e7fd74e0
cometimento f58c82a3ee
1 ficheiros modificados com 0 adições e 7 eliminações

Ver ficheiro

@ -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" +