remove mac_address not used

This commit is contained in:
Nikola Petrov 2024-07-31 15:50:19 +02:00
parent ffbd4de8b2
commit 0c19dde34d
2 changed files with 3 additions and 5 deletions

View File

@ -11,10 +11,9 @@ export enum values {
omdb_key,
twitch_client_id,
twitch_client_secret,
mac_address
}
const namesOfValues: string[] = ["", "pass", "omdb_key", "twitch_client_id", "twitch_client_secret", "mac_address"];
const namesOfValues: string[] = ["", "pass", "omdb_key", "twitch_client_id", "twitch_client_secret"];
async function getValue(name: values): Promise<string | undefined> {
try {

View File

@ -41,9 +41,8 @@ INSERT INTO userData (name, value) VALUES ("omdb_key", "");
INSERT INTO userData (name, value) VALUES ("twitch_client_id", "");
INSERT INTO userData (name, value) VALUES ("twitch_client_secret", "");
INSERT INTO userData (name, value) VALUES ("mac_address", "");
INSERT INTO
userData (name, value) VALUES ("twitch_client_secret", "");
CREATE TABLE bankCardTransaction (
id INT NOT NULL AUTO_INCREMENT,