質問編集履歴
1
説明の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -102,6 +102,40 @@
|
|
102
102
|
|
103
103
|
```
|
104
104
|
|
105
|
+
通知機能ののマイグレーションファイルです。
|
106
|
+
|
107
|
+
```ここに言語名を入力
|
108
|
+
|
109
|
+
class CreateNotifications < ActiveRecord::Migration[6.0]
|
110
|
+
|
111
|
+
def change
|
112
|
+
|
113
|
+
create_table :notifications do |t|
|
114
|
+
|
115
|
+
t.integer :visitor_id
|
116
|
+
|
117
|
+
t.integer :visited_id
|
118
|
+
|
119
|
+
t.integer :room_id
|
120
|
+
|
121
|
+
t.integer :message_id
|
122
|
+
|
123
|
+
t.string :action
|
124
|
+
|
125
|
+
t.boolean :checked
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
t.timestamps
|
130
|
+
|
131
|
+
end
|
132
|
+
|
133
|
+
end
|
134
|
+
|
135
|
+
end
|
136
|
+
|
137
|
+
```
|
138
|
+
|
105
139
|
|
106
140
|
|
107
141
|
(messages.controller.rb)チャットのメッセージのコントローラーです。
|