Creating a table with Primary Key (customer_id) which matches another PK from another table, and trying to reference that.
CREATE TABLE customer_leads(
customer_id SERIAL PRIMARY KEY,
first_name VARCHAR(25) NOT NULL,
last_name VARCHAR(25) NOT NULL,
email VARCHAR(25) NOT NULL UNIQUE,
signup_date TIMESTAMP NOT NULL,
duration TIME NOT NULL,
PRIMARY KEY(customer_id) REFERENCES customer(customer_id)
)