23 lines
642 B
C++
23 lines
642 B
C++
//
|
|
// Created by trotfunky on 02/10/2021.
|
|
//
|
|
|
|
#ifndef AUTOPOINTSPERMIS_DB_INFO_H
|
|
#define AUTOPOINTSPERMIS_DB_INFO_H
|
|
|
|
#include <string>
|
|
|
|
const std::string dbName = "Permis.sqlite3";
|
|
const std::string pointsTable = "POINTS";
|
|
|
|
const std::string keyColumn = "LicenseHash";
|
|
const std::string idColumn = "LicenseID";
|
|
const std::string pointsColumn = "Points";
|
|
const std::string countdownColumn = "Countdown";
|
|
const std::string onePointCountdownColumn = "OneCountdown";
|
|
const std::string tenYearsCountdownColumn = "TenYCountdown";
|
|
const std::string graveOffenceColumn = "HasGrave";
|
|
|
|
constexpr int IDLength = 40;
|
|
|
|
#endif //AUTOPOINTSPERMIS_DB_INFO_H
|