Skip to content

Commit

Permalink
updated drop table statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Kristen Yee authored and Kristen Yee committed Nov 19, 2023
1 parent d560285 commit 19035e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/schema/catalog.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ CREATE TYPE event AS ENUM ('guest speaker', 'study-trip', 'workshop');
CREATE TYPE subject AS ENUM ('life skills', 'science', 'technology', 'engineering', 'math', 'college readiness');
CREATE TYPE year AS ENUM ('junior', 'senior', 'both');

DROP TABLE catalog IF EXISTS;
DROP TABLE IF EXISTS catalog;
CREATE TABLE catalog (
id VARCHAR(10) PRIMARY KEY,
host VARCHAR(50) NOT NULL,
Expand Down

0 comments on commit 19035e2

Please sign in to comment.