Skip to content

Commit

Permalink
Update all_data.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
ioannidis authored May 6, 2018
1 parent 3a8776d commit c1458de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions all_data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1436,7 +1436,7 @@ CREATE TABLE employee (
first_name VARCHAR(60) NOT NULL ,
last_name VARCHAR(60) NOT NULL ,
email VARCHAR(60) NOT NULL UNIQUE ,
afm INT NOT NULL UNIQUE ,
afm NUMERIC(8,0) NOT NULL UNIQUE ,

PRIMARY KEY (id)
);
Expand All @@ -1461,7 +1461,7 @@ CREATE TABLE customers (
id SERIAL NOT NULL ,
first_name VARCHAR(60) NOT NULL ,
last_name VARCHAR(60) NOT NULL ,
afm INT NOT NULL UNIQUE,
afm NUMERIC(8,0) NOT NULL UNIQUE ,
email VARCHAR(60) NOT NULL UNIQUE ,
phone VARCHAR(10) NOT NULL UNIQUE ,

Expand Down

0 comments on commit c1458de

Please sign in to comment.