1
0
Fork 0
AutoPointsPermis/db_info.h
Teo-CD 8f768ff9e0 Basic demonstrator
Works fine but can be slow, especially because of heavy IO.
2021-10-03 19:42:28 +01:00

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