-- 001_create_results_table.sql CREATE TABLE IF NOT EXISTS results ( id INT AUTO_INCREMENT PRIMARY KEY, shooter_id INT NOT NULL, result_text VARCHAR(255) NOT NULL, comments TEXT, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP );