Skip to content

Commit

Permalink
FIX tables.sql - missing ; breaks SQL queries. (#1348)
Browse files Browse the repository at this point in the history
# Description

A missing ; in the CREATE query for onboarding tables breaks the script
execution on Supabase.

## Checklist before requesting a review

Please delete options that are not relevant.

- [x ] My code follows the style guidelines of this project
- [ x] I have performed a self-review of my code
- [ x] Any dependent changes have been merged

## Screenshots (if appropriate):
  • Loading branch information
stanrb authored Oct 6, 2023
1 parent b5c01ef commit d2fcb73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ CREATE TABLE IF NOT EXISTS onboardings (
onboarding_b2 BOOLEAN NOT NULL DEFAULT true,
onboarding_b3 BOOLEAN NOT NULL DEFAULT true,
PRIMARY KEY (user_id)
)
);

insert into
storage.buckets (id, name)
Expand Down

0 comments on commit d2fcb73

Please sign in to comment.