From 4ee94337b232a817ea5cc2f9ef39074f0d760e66 Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Tue, 17 Nov 2020 21:27:30 +1100 Subject: [PATCH] missing ; -- last update to fixes.sql, Ill delete it next --- fixes.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fixes.sql b/fixes.sql index 9d023f0..8b3c11a 100644 --- a/fixes.sql +++ b/fixes.sql @@ -71,9 +71,9 @@ ALTER TABLE book RENAME COLUMN temp_owned TO owned; ALTER TABLE book DROP COLUMN rating; ALTER TABLE book RENAME COLUMN temp_rating TO rating; -DROP TABLE condition_lst -DROP TABLE covertype_lst -DROP TABLE owned_lst -DROP TABLE rating_lst +DROP TABLE condition_lst; +DROP TABLE covertype_lst; +DROP TABLE owned_lst; +DROP TABLE rating_lst; # then modify main.py again, to delete condition and rename temp_ to in class Book