回答編集履歴
1
Add second answer
test
CHANGED
@@ -10,6 +10,10 @@
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
+
## 1
|
14
|
+
|
15
|
+
|
16
|
+
|
13
17
|
データベースマイグレーションを実行しましたか?
|
14
18
|
|
15
19
|
参考:
|
@@ -17,3 +21,25 @@
|
|
17
21
|
[Migrate your database | Getting Started on Heroku with Rails 6.x | Heroku Dev Center](https://devcenter.heroku.com/articles/getting-started-with-rails6#migrate-your-database)
|
18
22
|
|
19
23
|
[Getting Started on Heroku with Ruby | Heroku Dev Center](https://devcenter.heroku.com/articles/getting-started-with-ruby#use-a-database)
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
## 2
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
Heroku 上でのデータベース接続設定を
|
32
|
+
|
33
|
+
`database.yml` ではなく `DATABASE_URL` で一元的に設定していますか?
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
参考: [Rails Database Connection Behavior | Heroku Dev Center](https://devcenter.heroku.com/articles/rails-database-connection-behavior#configuring-connections-in-rails-4-1)
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
## 3
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
`heroku run rake db:migrate` を実行したときに、なにかエラーは表示されませんでしたか?
|