From e04734f2a2047c61886eca15525b928c1420826f Mon Sep 17 00:00:00 2001 From: keleher <keleher@cs.umd.edu> Date: Thu, 26 Sep 2019 07:55:32 -0400 Subject: [PATCH] Revert "auto" This reverts commit b86fded0c3363f47417ce0bb3991dcccc1239047. --- project0/small.sql | 10 +++++----- project1/small.sql | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/project0/small.sql b/project0/small.sql index 4e49d7b..6b7d80c 100644 --- a/project0/small.sql +++ b/project0/small.sql @@ -1,8 +1,8 @@ -drop table if exists flewon; -drop table if exists flights; -drop table if exists customers; -drop table if exists airlines; -drop table if exists airports; +drop table flewon; +drop table flights; +drop table customers; +drop table airlines; +drop table airports; create table airports (airportid char(3) primary key, city char(20), name char(100), total2011 int, total2012 int); insert into airports(name, city, airportid, total2011, total2012) values('Metropolitan Oakland International','Oakland','OAK',10040864,9266570); diff --git a/project1/small.sql b/project1/small.sql index 4e49d7b..6b7d80c 100644 --- a/project1/small.sql +++ b/project1/small.sql @@ -1,8 +1,8 @@ -drop table if exists flewon; -drop table if exists flights; -drop table if exists customers; -drop table if exists airlines; -drop table if exists airports; +drop table flewon; +drop table flights; +drop table customers; +drop table airlines; +drop table airports; create table airports (airportid char(3) primary key, city char(20), name char(100), total2011 int, total2012 int); insert into airports(name, city, airportid, total2011, total2012) values('Metropolitan Oakland International','Oakland','OAK',10040864,9266570); -- GitLab