This commit is contained in:
aboolathings 2022-05-12 17:09:19 +01:00
commit 81f2478378
1 changed files with 4 additions and 4 deletions

View File

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