Created the recommendations table

This commit is contained in:
Mathias Wagner
2022-05-07 22:03:46 +02:00
parent 1c18a3e3e6
commit 15dcda0fc0

View File

@@ -20,6 +20,11 @@ module.exports.create = () => {
" download double," +
" upload double," +
" created DATETIME DEFAULT CURRENT_TIMESTAMP);");
db.exec("create table if not exists recommendations(" +
" id integer primary key autoincrement," +
" ping integer(5000)," +
" download double," +
" upload double);");
}
module.exports.insert = () => {