cyxc
All checks were successful
Deploy / deploy-staging (push) Successful in 8s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-05-05 20:36:41 +02:00
parent fd092ef615
commit eb8b04a621
14 changed files with 39 additions and 969 deletions

View File

@@ -2,22 +2,6 @@ INSERT INTO miningcheck_projects (project_key, project_name)
VALUES ('doge-main', 'DOGE Mining Main')
ON DUPLICATE KEY UPDATE project_name = VALUES(project_name);
INSERT INTO miningcheck_currencies (code, name, symbol, is_active, sort_order)
VALUES
('EUR', 'Euro', 'EUR', 1, 10),
('USD', 'US-Dollar', 'USD', 1, 20),
('DOGE', 'Dogecoin', 'DOGE', 1, 100),
('BTC', 'Bitcoin', 'BTC', 1, 110),
('ETH', 'Ethereum', 'ETH', 1, 120),
('LTC', 'Litecoin', 'LTC', 1, 130),
('USDT', 'Tether', 'USDT', 1, 140),
('USDC', 'USD Coin', 'USDC', 1, 150)
ON DUPLICATE KEY UPDATE
name = VALUES(name),
symbol = VALUES(symbol),
is_active = VALUES(is_active),
sort_order = VALUES(sort_order);
INSERT INTO miningcheck_settings (
project_key,
baseline_measured_at,