質問編集履歴

1

試したことの追加(migration)

2021/02/27 03:36

投稿

shawn_709
shawn_709

スコア13

test CHANGED
File without changes
test CHANGED
@@ -372,6 +372,32 @@
372
372
 
373
373
 
374
374
 
375
+ ```migration
376
+
377
+ class CreateComments < ActiveRecord::Migration[6.0]
378
+
379
+ def change
380
+
381
+ create_table :comments do |t|
382
+
383
+ t.text :comment_content, null: false
384
+
385
+ t.integer :user_id, null: false
386
+
387
+ t.integer :content_id, null: false
388
+
389
+ t.timestamps
390
+
391
+ end
392
+
393
+ end
394
+
395
+ end
396
+
397
+ ```
398
+
399
+
400
+
375
401
  エラーにはなりませんでしたが、現状は変わりませんでした。
376
402
 
377
403
  以上になります。ご助言いただけると幸いです。