質問編集履歴

1

修正

2020/07/13 03:47

投稿

atage517
atage517

スコア36

test CHANGED
File without changes
test CHANGED
@@ -196,8 +196,32 @@
196
196
 
197
197
  ```
198
198
 
199
-
199
+ ```ここに言語を入力
200
+
200
-
201
+ class CreatePosts < ActiveRecord::Migration[6.0]
202
+
203
+ def change
204
+
205
+ create_table :posts do |t|
206
+
207
+ t.text :title
208
+
209
+ t.text :content
210
+
211
+ t.integer :user_id
212
+
213
+
214
+
215
+ t.timestamps
216
+
217
+ end
218
+
219
+ end
220
+
221
+ end
222
+
223
+ ```
224
+
201
- 上記はUserのmigrationファイルのなかみです
225
+ 上記はUserとPostのmigrationファイルのなかみです
202
226
 
203
227
  どのようにしたらpostをuserモデルの関係性を示し、自分をおなじ学部(subject)のユーザーの投稿のみを表示できるようになるでしょうか?