Fix the syntax differences between HSQL and Postgres

This commit is contained in:
Nanne Baars 2020-04-26 20:28:23 +02:00 committed by Nanne Baars
parent 54610868fe
commit 1aad57ba55

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'); INSERT INTO employees VALUES ('37648','John', 'Smith', 'Marketing', 64350, '3SL99A');
CREATE TABLE access_log ( CREATE TABLE access_log (
id int not null primary key, id int generated always as identity not null primary key,
time varchar(50), time varchar(50),
action varchar(200) action varchar(200)
); );