Make the app independent from the server timezone

When getting local time in SQLite, the local time is generated taking
into account the timezone set in the server, not in PHP. Therefore,
this made it compulsory to set the "Europe/Madrid" timezone for the
whole server.

This change fixes this by generating local timestamps directly in PHP
instead than in SQLite, therefore allowing the server timezone to be
set freely without this app malfunctioning.

Change-Id: I5345772d9b7a2521c98143a90e4154eaa4cd35f6
diff --git a/config.default.php b/config.default.php
index a53ef00..ac64fd1 100644
--- a/config.default.php
+++ b/config.default.php
@@ -1,8 +1,13 @@
 <?php
 $conf = [];
 
+// TMB API credentials
 $conf["tmbApi"] = [];
 $conf["tmbApi"]["appId"] = "";
 $conf["tmbApi"]["appKey"] = "";
 
+// Location where the site will save the database file
 $conf["databaseFile"] = "";
+
+// Timezone of the subway system
+$conf["timezone"] = "Europe/Madrid";