In PostgreSQL, you don't need the current_timestamp, it automatically calculates.
CREATE TABLE Customer (
customerID SERIAL PRIMARY KEY,
name VARCHAR(255) NOT NULL,
address TEXT,
birthdate DATE,
CONSTRAINT age_check CHECK (AGE(birthdate) >= INTERVAL '18 years')
);