Skip to content

Commit

Permalink
Merge pull request #578 from tnir/tn-sqlite3-pathname
Browse files Browse the repository at this point in the history
fix: change the pathname SQLite3 in accordance with Rails 7.1
  • Loading branch information
vesan authored Jun 10, 2024
2 parents 01f6b2d + a468830 commit cf71bdf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _pages/deployment/fly-io.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Open the `config/database.yml` file in your Text Editor. Change the following li
{% highlight yaml %}
production:
<<: *default
database: db/production.sqlite3
database: storage/production.sqlite3
{% endhighlight %}

to these lines:
Expand Down
2 changes: 1 addition & 1 deletion _pages/digital-ocean.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Open the `config/database.yml` file in your Text Editor. Change the following li
{% highlight yaml %}
production:
<<: *default
database: db/production.sqlite3
database: storage/production.sqlite3
{% endhighlight %}

to these lines:
Expand Down
2 changes: 1 addition & 1 deletion _pages/heroku.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Change the following lines in the file:
{% highlight yaml %}
production:
<<: *default
database: db/production.sqlite3
database: storage/production.sqlite3
{% endhighlight %}

to these lines:
Expand Down

0 comments on commit cf71bdf

Please sign in to comment.