Skip to content

Commit

Permalink
fixed DB ingest issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sammdu committed Dec 9, 2021
1 parent 841431f commit 4658ca5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ private static void exitWithHelp(int exitCode) {
private static void createCarsTable(Connection conn) throws SQLException {
PreparedStatement stmt = conn.prepareStatement(
"CREATE TABLE IF NOT EXISTS public.cars (" +
"car_id integer NOT NULL PRIMARY KEY, " +
"car_id serial NOT NULL PRIMARY KEY, " +
"brand varchar(50) NOT NULL, " +
"model varchar(50) NOT NULL, " +
"year integer NOT NULL, " +
Expand Down

0 comments on commit 4658ca5

Please sign in to comment.