質問編集履歴
6
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -149,3 +149,5 @@
|
|
149
149
|
up 20200312051405 Devise create users
|
150
150
|
|
151
151
|
```
|
152
|
+
|
153
|
+
rails db:dropを開発環境でしてみた結果postテーブルが消えたため、マイグレーションファイルが何かのタイミングで消えてしまったのが原因だったと思われる。
|
5
文の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -8,9 +8,9 @@
|
|
8
8
|
|
9
9
|
If you are the application owner check the logs for more information.
|
10
10
|
|
11
|
-
と表示されま
|
11
|
+
と表示されました。
|
12
12
|
|
13
|
-
トップページや他のページテーブルが使用されているページは問題なく動作します。
|
13
|
+
トップページや他のページ、テーブルが使用されているページは問題なく動作します。
|
14
14
|
|
15
15
|
開発環境では全ページ問題なく動作します。
|
16
16
|
|
4
文の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
railsでのアプリ作成中にherokuへデプロイして本番環境で動作確認をしていると
|
5
|
+
railsでのアプリ作成中にherokuへデプロイして本番環境で動作確認をしているとpostテーブルが使用されているページ(posts/index.erb もしくは posts/new.erb)で
|
6
6
|
|
7
7
|
We're sorry, but something went wrong.
|
8
8
|
|
@@ -10,9 +10,11 @@
|
|
10
10
|
|
11
11
|
と表示されます。
|
12
12
|
|
13
|
-
|
13
|
+
トップページや他のページテーブルが使用されているページは問題なく動作します。
|
14
14
|
|
15
|
+
開発環境では全ページ問題なく動作します。
|
16
|
+
|
15
|
-
以下のエラー文より、post
|
17
|
+
以下のエラー文より、postテーブルに原因があると考えましたが、それ以上のことが全くわかりません。
|
16
18
|
|
17
19
|
記述自体にsqlite3では動作してpgでは動作しない原因があるのでしょうか。
|
18
20
|
|
3
情報の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -126,6 +126,8 @@
|
|
126
126
|
|
127
127
|
heroku run rails db:migrate、drop,createなども一通り試しました。
|
128
128
|
|
129
|
+
production.logを見るもエラーは見られず。
|
130
|
+
|
129
131
|
|
130
132
|
|
131
133
|
### 追記、気になった点
|
2
情報の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -131,3 +131,17 @@
|
|
131
131
|
### 追記、気になった点
|
132
132
|
|
133
133
|
db/migrate内のpostテーブルのmigrationファイルが無くなっている。
|
134
|
+
|
135
|
+
```
|
136
|
+
|
137
|
+
heroku run rails db:migrate:status
|
138
|
+
|
139
|
+
Status Migration ID Migration Name
|
140
|
+
|
141
|
+
--------------------------------------------------
|
142
|
+
|
143
|
+
D, [2020-03-15T15:26:38.228536 #4] DEBUG -- : (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
|
144
|
+
|
145
|
+
up 20200312051405 Devise create users
|
146
|
+
|
147
|
+
```
|
1
情報の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -125,3 +125,9 @@
|
|
125
125
|
postの従属関係を除くも動作せず。
|
126
126
|
|
127
127
|
heroku run rails db:migrate、drop,createなども一通り試しました。
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
### 追記、気になった点
|
132
|
+
|
133
|
+
db/migrate内のpostテーブルのmigrationファイルが無くなっている。
|