質問編集履歴
1
コードの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -78,6 +78,32 @@
|
|
78
78
|
|
79
79
|
```
|
80
80
|
|
81
|
+
マイグレーションファイルの記述です
|
82
|
+
|
83
|
+
```
|
84
|
+
|
85
|
+
class CreateComments < ActiveRecord::Migration[6.0]
|
86
|
+
|
87
|
+
def change
|
88
|
+
|
89
|
+
create_table :comments do |t|
|
90
|
+
|
91
|
+
t.text :text, null: false
|
92
|
+
|
93
|
+
t.references :user_id, null: false, foreign_key: true
|
94
|
+
|
95
|
+
t.references :prototype_id, null: false, foreign_key: true
|
96
|
+
|
97
|
+
t.timestamps
|
98
|
+
|
99
|
+
end
|
100
|
+
|
101
|
+
end
|
102
|
+
|
103
|
+
end
|
104
|
+
|
105
|
+
```
|
106
|
+
|
81
107
|
|
82
108
|
|
83
109
|
mysql2のエラーについても調べてみましたが解決せず‥
|