From b9a8ab164794366fcbe37323dc338764ceb941bd Mon Sep 17 00:00:00 2001 From: westernmeadow Date: Tue, 5 Dec 2023 21:38:33 +0000 Subject: [PATCH] added missing comma --- MarketPlaces/DB_Connection/db_connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MarketPlaces/DB_Connection/db_connection.py b/MarketPlaces/DB_Connection/db_connection.py index 2f3341a..7d85bb5 100644 --- a/MarketPlaces/DB_Connection/db_connection.py +++ b/MarketPlaces/DB_Connection/db_connection.py @@ -437,7 +437,7 @@ def create_database(cur, con): cur.execute(sql) sql = "Create table marketplaces_status (market_id integer NOT NULL, date_inserted date NOT NULL, " \ - "listings integer NOT NULL, descriptions integer NOT NULL, status bit(1) NOT NULL, date_reference date NOT NULL " \ + "listings integer NOT NULL, descriptions integer NOT NULL, status bit(1) NOT NULL, date_reference date NOT NULL, " \ "CONSTRAINT marketplaces_log_pkey PRIMARY KEY (market_id, date_inserted), " \ "CONSTRAINT marketplaces_fk FOREIGN KEY (market_id) REFERENCES marketplaces (market_id))" cur.execute(sql)