Include referrers in statistics

This commit is contained in:
Daniel Brendel
2022-12-19 15:12:23 +01:00
parent 012f2f874f
commit 83ece04fe3
7 changed files with 58 additions and 6 deletions

View File

@ -34,6 +34,7 @@
$this->database->add('id INT NOT NULL AUTO_INCREMENT PRIMARY KEY');
$this->database->add('hash_token VARCHAR(512) NOT NULL');
$this->database->add('hittype VARCHAR(100) NOT NULL');
$this->database->add('referrer VARCHAR(512) NOT NULL');
$this->database->add('created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP');
$this->database->create();
}