Added the error, type and time column to the speedtests table

This commit is contained in:
Mathias Wagner
2022-06-11 01:02:46 +02:00
parent 8834e26913
commit f3bf656ed6

View File

@@ -19,6 +19,9 @@ module.exports.create = () => {
" ping integer(5000)," +
" download double," +
" upload double," +
" error varchar(255)," +
" type varchar(255)," +
" time double," +
" created DATETIME DEFAULT CURRENT_TIMESTAMP);");
db.exec("create table if not exists recommendations(" +
" id integer primary key autoincrement," +