Implemented Settings

Improved cronjob
Fixed Views
Added env encryption key for encrypting sensitive data in database.
This commit is contained in:
Hosteroid
2025-10-08 18:54:34 +03:00
parent b3b3ac66ff
commit 146df224bd
19 changed files with 1640 additions and 94 deletions

View File

@@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS domains (
registrar VARCHAR(255),
expiration_date DATE,
last_checked TIMESTAMP NULL,
status ENUM('active', 'expiring_soon', 'expired', 'error') DEFAULT 'active',
status ENUM('active', 'expiring_soon', 'expired', 'error', 'available') DEFAULT 'active',
whois_data JSON,
is_active BOOLEAN DEFAULT TRUE,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,