Skip to content

Commit

Permalink
removed brackets around exist conditionals
Browse files Browse the repository at this point in the history
  • Loading branch information
arralia committed Nov 19, 2023
1 parent a499026 commit 1155340
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/schema/published_schedule.sql
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
DROP TABLE [IF EXISTS] published_schedule;
DROP TABLE IF EXISTS published_schedule;

CREATE TYPE year AS ENUM ('Junior','Senior');

CREATE TABLE [IF NOT EXISTS] published_schedule (
CREATE TABLE IF NOT EXISTS published_schedule (
id varchar(10) NOT NULL,
event_id varchar(10) NOT NULL,
confirmed boolean NOT NULL,
Expand Down

0 comments on commit 1155340

Please sign in to comment.