World Cup Database - Build a World Cup Database

Tell us what’s happening:
Describe your issue in detail here.
I Forget to add UNIQUE After the name Column How to reverse the entry as in How to add Just unique

Your code so far

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0

Challenge: World Cup Database - Build a World Cup Database

Link to the challenge:

You can add a UNIQUE constraint to an existing column with the following command:

ALTER TABLE table_name ADD UNIQUE(column_name);