My Problem is to make the Column email NOT NULL AND UNIQUE
ALTER TABLE benutzer ADD email VARCHAR(75) UNIQUE;
works fine but
ALTER TABLE benutzer ADD email VARCHAR(75) UNIQUE NOT NULL;
or
ALTER TABLE benutzer ADD email VARCHAR(75) UNIQUE ,NOT NULL;
work not fine :-(
the error is:
FEHLER: Syntaxerror by „NULL“
I don't understand the Problem from Postgresql >.<
EDIT:
I have solve the Problem. The Solution for my Problem is to delete the records in my Table.