Introduction
In this challenge, you will build an SQLite database for storing customer contact information. The goal is to design and create a customers table within the customers.db database, located in the ~/project directory.
You will define columns for id (INTEGER PRIMARY KEY), name (TEXT), and email (TEXT), ensuring that the email column has a UNIQUE constraint to prevent duplicate email addresses. The challenge involves using the sqlite3 shell to execute SQL commands, specifically the CREATE TABLE statement, and verifying the table structure using the .schema customers command.


