FIX tables.sql - missing ; breaks SQL queries. (#1348)

# 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):
This commit is contained in:
Stanislav "Stan" Bogdanov 2023-10-06 13:32:49 -05:00 committed by GitHub
parent b5c01efb78
commit d2fcb737b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)