Database connection established. Dropped existing table if any. Executing SQL: CREATE TABLE deadlines ( id INT AUTO_INCREMENT PRIMARY KEY, client_id INT NOT NULL, title VARCHAR(255) NOT NULL, due_date DATE NOT NULL, notes TEXT, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, deleted_at DATETIME DEFAULT NULL, FOREIGN KEY (client_id) REFERENCES clients(id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci Table created successfully. Table existence verified. Creating index: CREATE INDEX idx_client_id ON deadlines(client_id) Index created successfully. Creating index: CREATE INDEX idx_due_date ON deadlines(due_date) Index created successfully. Creating index: CREATE INDEX idx_deleted_at ON deadlines(deleted_at) Index created successfully. Database updates completed successfully.