Fix the syntax differences between HSQL and Postgres

This commit is contained in:
Nanne Baars
2020-04-26 20:09:15 +02:00
committed by Nanne Baars
parent 4831338649
commit 54610868fe
2 changed files with 5 additions and 3 deletions

View File

@ -14,7 +14,7 @@ INSERT INTO employees VALUES ('34477','Abraham ', 'Holman', 'Development', 5000
INSERT INTO employees VALUES ('37648','John', 'Smith', 'Marketing', 64350, '3SL99A');
CREATE TABLE access_log (
id int not null primary key identity,
id int not null primary key,
time varchar(50),
action varchar(200)
);