Skip to content

Commit

Permalink
add missing semicolon to settings insert statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayon95 committed Mar 23, 2024
1 parent 397baee commit 7902018
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion supabase/seed.sql
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ begin
insert into
public.settings (min_booking_length, max_booking_length, max_guests_per_booking, breakfast_price, user_id)
values
(1, 30, 8, 15, user_id)
(1, 30, 8, 15, user_id);
-- create cabins
insert into
public.cabin (name, max_capacity, regular_price, discount, description, image_url, user_id)
Expand Down

0 comments on commit 7902018

Please sign in to comment.