Skip to content

Commit

Permalink
update limitation paragraphs in pg docs
Browse files Browse the repository at this point in the history
  • Loading branch information
kostasb committed Jul 29, 2024
1 parent 6daf947 commit 83ed8fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 020-Connect/010-Postgres/001-direct-access.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -285,9 +285,9 @@ Concurrent connections are limited by [plan](/docs/concepts/pricing#pricing-plan

Branch migrations are not supported yet. In databases that support direct Postgres access, you can create new branches but they cannot be merged together. This capability will become available later on.

### ORM native migrations are unsupported
### Schema files

Currently we recommend using `xata pull [branchname]`, `xata push [branchname]` or the UI's migration editor to manage your schema changes. ORM native migrations (such as those in Django, Prisma or the like) will possibly have issues during the beta. Our goals are to increase support as we move toward general availability.
CLI commands that apply schema files (`xata schema upload schema.json`, `xata init --schema=schema.json`) are not supported in Postgres-enabled databases. The recommended method to [export](/docs/postgres#export) and [import](/docs/postgres#import) a certain schema is via standard postgres tools (`psql`,`pg_dump`,`pg_restore`). For example, you can add the `--schema-only` parameter to `pg_dump` to export just the schema and no data.

## Column metadata

Expand Down

0 comments on commit 83ed8fb

Please sign in to comment.