Skip to content

Commit f539147

Browse files
authored
Fix database URI formatting in models.md (#1746)
Correct formatting of the database URI in the configuration example.
1 parent 95057fd commit f539147

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs-site/content/docs/the-app/models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ To configure `postgres` instead of `sqlite`, go into your `config/development.ya
2727

2828
```yaml
2929
database:
30-
uri: "{{ get_env(name="DATABASE_URL", default="postgres://loco:loco@localhost:5432/myapp_development") }"
30+
uri: "{{ get_env(name="DATABASE_URL", default="postgres://loco:loco@localhost:5432/myapp_development") }}"
3131
```
3232
3333
<div class="infobox">

0 commit comments

Comments
 (0)