> ## Documentation Index
> Fetch the complete documentation index at: https://docs.brached.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Database Management (Atlas)

> How we manage database schemas and migrations

Brached uses Atlas for declarative database schema management.

## Schema Definition

Schemas are defined in `atlas.hcl`.

## Applying Changes

To apply schema changes:

```bash theme={null}
atlas schema apply -u "postgres://user:pass@localhost:5432/db" --to file://atlas.hcl
```
