constraints adjustment after error

This commit is contained in:
aboolathings 2022-05-12 17:11:36 +01:00
parent 81f2478378
commit 2c264356cd
2 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
CREATE TABLE players (
player_id NUMBER(4),
player_name VARCHAR2(15),
contact_email VARCHAR2(25),
contact_number CHAR(13)
player_name VARCHAR2(15) NOT NULL,
contact_email VARCHAR2(25) NOT NULL UNIQUE,
contact_number CHAR(13) NOT NULL UNIQUE
);
CREATE TABLE teams (

Binary file not shown.