質問編集履歴
1
postのマイグレーションファイルの記述追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -63,3 +63,29 @@
|
|
63
63
|
上記のように記載してAccount.find(1).Postと入力してもNo method errorとなってしまいPostが見つからないと言われてしまいます
|
64
64
|
|
65
65
|
うまくいかない理由や別のやり方について教えていただけると幸いです
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
20201109075604_create_posts.rb
|
70
|
+
|
71
|
+
```Ruby
|
72
|
+
|
73
|
+
class CreatePosts < ActiveRecord::Migration[5.1]
|
74
|
+
|
75
|
+
def change
|
76
|
+
|
77
|
+
create_table :posts do |t|
|
78
|
+
|
79
|
+
t.text :content
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
t.timestamps
|
84
|
+
|
85
|
+
end
|
86
|
+
|
87
|
+
end
|
88
|
+
|
89
|
+
end
|
90
|
+
|
91
|
+
```
|