Skip to content

Commit

Permalink
Merge pull request #194 from supabase/doc/extension-schema
Browse files Browse the repository at this point in the history
docs: add extension creation schema
  • Loading branch information
burmecia authored Nov 23, 2023
2 parents 77d1aff + 6c4869d commit e7fe027
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/airtable.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The Airtable Wrapper allows you to read data from your Airtable bases/tables wit
Before you get started, make sure the `wrappers` extension is installed on your database:

```sql
create extension if not exists wrappers;
create extension if not exists wrappers with schema extensions;
```

and then create the foreign data wrapper:
Expand Down
2 changes: 1 addition & 1 deletion docs/bigquery.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The BigQuery Wrapper allows you to read and write data from BigQuery within your
Before you get started, make sure the `wrappers` extension is installed on your database:

```sql
create extension if not exists wrappers;
create extension if not exists wrappers with schema extensions;
```

and then create the foreign data wrapper:
Expand Down
2 changes: 1 addition & 1 deletion docs/clickhouse.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The ClickHouse Wrapper allows you to read and write data from ClickHouse within
Before you get started, make sure the `wrappers` extension is installed on your database:

```sql
create extension if not exists wrappers;
create extension if not exists wrappers with schema extensions;
```

and then create the foreign data wrapper:
Expand Down
2 changes: 1 addition & 1 deletion docs/firebase.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Before you get started, make sure the `wrappers` extension is installed on your database:

```sql
create extension if not exists wrappers;
create extension if not exists wrappers with schema extensions;
```

and then create the foreign data wrapper:
Expand Down
2 changes: 1 addition & 1 deletion docs/logflare.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The Logflare Wrapper allows you to read data from Logflare endpoints within your
Before you get started, make sure the `wrappers` extension is installed on your database:

```sql
create extension if not exists wrappers;
create extension if not exists wrappers with schema extensions;
```

and then create the foreign data wrapper:
Expand Down
2 changes: 1 addition & 1 deletion docs/s3.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ The S3 Wrapper uses Parquet file data types from [arrow_array::types](https://do
Before you get started, make sure the `wrappers` extension is installed on your database:

```sql
create extension if not exists wrappers;
create extension if not exists wrappers with schema extensions;
```

and then create the foreign data wrapper:
Expand Down
2 changes: 1 addition & 1 deletion docs/stripe.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Before you get started, make sure the `wrappers` extension is installed on your database:

```sql
create extension if not exists wrappers;
create extension if not exists wrappers with schema extensions;
```

and then create the foreign data wrapper:
Expand Down

0 comments on commit e7fe027

Please sign in to comment.