CREATE TABLE users (
user_id SERIAL PRIMARY KEY,
username TEXT NOT NULL,
email TEXT,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
CREATE INDEX idx_users_username ON users(username);
INSERT INTO users (username, email) VALUES
('Lucy', 'lucy@example.com'),
('Maple', 'maple@example.com'),
('Jane', 'jane@example.com'),
('Helen', 'helen@example.com'),
('Josh', 'josh@example.com'),
('Captain', 'captiain@example.com');