Thanks to visit codestin.com
Credit goes to github.com

Skip to content

[pull] master from supabase:master #86

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/docs/content/guides/auth/server-side/sveltekit.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ Set up a listener for Auth events on the client, to handle session refreshes and

<StepHikeCompact.Details title="Create your first page">

Create your first page. This example page calls Supabase from the server to get a list of countries from the database.
Create your first page. This example page calls Supabase from the server to get a list of colors from the database.

This is an example of a public page that uses publicly readable data.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,28 +98,6 @@ supabase migration up
<StepHikeCompact>

<StepHikeCompact.Step step={1}>
<StepHikeCompact.Details title="Stop the local database">
Before updating your schema files, stop the local development environment.
</StepHikeCompact.Details>

<StepHikeCompact.Code>

<$CodeTabs>

```bash name=Terminal
supabase stop
```

</$CodeTabs>

</StepHikeCompact.Code>

</StepHikeCompact.Step>
</StepHikeCompact>

<StepHikeCompact>

<StepHikeCompact.Step step={2}>
<StepHikeCompact.Details title="Add a new column">
Edit `supabase/schemas/employees.sql` file to add a new column to `employees` table.
</StepHikeCompact.Details>
Expand Down Expand Up @@ -151,7 +129,7 @@ Some entities like views and enums expect columns to be declared in a specific o

<StepHikeCompact>

<StepHikeCompact.Step step={3}>
<StepHikeCompact.Step step={2}>
<StepHikeCompact.Details title="Generate a new migration">
Diff existing migrations against your declared schema.
</StepHikeCompact.Details>
Expand All @@ -173,7 +151,7 @@ supabase db diff -f add_age

<StepHikeCompact>

<StepHikeCompact.Step step={4}>
<StepHikeCompact.Step step={3}>
<StepHikeCompact.Details title="Review the generated migration">
Verify that the generated migration contain a single incremental change.
</StepHikeCompact.Details>
Expand All @@ -194,7 +172,7 @@ alter table "public"."employees" add column "age" smallint not null;
</StepHikeCompact>

<StepHikeCompact>
<StepHikeCompact.Step step={5}>
<StepHikeCompact.Step step={4}>
<StepHikeCompact.Details title="Apply the pending migration">
Start the database locally and apply the pending migration.
</StepHikeCompact.Details>
Expand All @@ -204,7 +182,7 @@ alter table "public"."employees" add column "age" smallint not null;
<$CodeTabs>

```bash name=Terminal
supabase start && supabase migration up
supabase migration up
```

</$CodeTabs>
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/spec/supabase_js_v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4406,7 +4406,7 @@ functions:
name: Call a read-only Postgres function
code: |
```ts
const { data, error } = await supabase.rpc('hello_world', { get: true })
const { data, error } = await supabase.rpc('hello_world', undefined, { get: true })
```
data:
sql: |
Expand Down
Loading