-- Phase 2A eve.ritter.my optional test-only schema.
-- Static delivery can run without this schema. Use only if cPanel smoke tests need manifest audit tracking.

CREATE TABLE IF NOT EXISTS eve_manifest_audit (
    id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
    request_id VARCHAR(96) NOT NULL,
    manifest_name VARCHAR(128) NOT NULL,
    component VARCHAR(64) NULL,
    requested_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);

