質問編集履歴

2

画像アップロード使用

2021/02/06 23:46

投稿

osugi86
osugi86

スコア3

test CHANGED
File without changes
test CHANGED
@@ -211,3 +211,7 @@
211
211
  @mainからも反映されるようにしたいです。
212
212
 
213
213
  何かいい方法ないでしょうか?
214
+
215
+ --------追記----------
216
+
217
+ Activestorageを使用しているのですが保存されている画像についても反映されません

1

モデルの追加

2021/02/06 23:46

投稿

osugi86
osugi86

スコア3

test CHANGED
File without changes
test CHANGED
@@ -148,6 +148,62 @@
148
148
 
149
149
  ```
150
150
 
151
+ main
152
+
153
+ ```Ruby
154
+
155
+ class CreateMains < ActiveRecord::Migration[6.0]
156
+
157
+ def change
158
+
159
+ create_table :mains do |t|
160
+
161
+ t.string :name, null: false
162
+
163
+ t.text :info, null: false
164
+
165
+
166
+
167
+ t.references :user, null: false, foreign_key: true
168
+
169
+ end
170
+
171
+ end
172
+
173
+ end
174
+
175
+ ```
176
+
177
+ detail
178
+
179
+ ```Ruby
180
+
181
+ class CreateDetails < ActiveRecord::Migration[6.0]
182
+
183
+ def change
184
+
185
+ create_table :details do |t|
186
+
187
+
188
+
189
+ t.integer :category_id, null: false
190
+
191
+ t.integer :country_id, null: false
192
+
193
+
194
+
195
+ t.references :main, null: false, foreign_key: true
196
+
197
+ end
198
+
199
+ end
200
+
201
+ end
202
+
203
+
204
+
205
+ ```
206
+
151
207
  ![イメージ説明](f6d2980af8f282b367a6906537e1a1b6.png)
152
208
 
153
209
  上の画像のように@detailの情報しか反映されません。