質問編集履歴
3
モデル追加
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
時間検索を行いたい! Rails5系
|
1
|
+
whereを使用して、時間検索を行いたい! Rails5系
|
test
CHANGED
@@ -7,6 +7,30 @@
|
|
7
7
|
パラメータと同じ時刻(release_on)である、要素を検索を行っています。
|
8
8
|
|
9
9
|
しかし、情報が持ってこれず困っています。
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
### Notificationモデル
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
```
|
18
|
+
|
19
|
+
create_table "notifications", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4", force: :cascade do |t|
|
20
|
+
|
21
|
+
t.string "title", null: false
|
22
|
+
|
23
|
+
t.text "body", null: false
|
24
|
+
|
25
|
+
t.datetime "release_on"
|
26
|
+
|
27
|
+
t.datetime "created_at", null: false
|
28
|
+
|
29
|
+
t.datetime "updated_at", null: false
|
30
|
+
|
31
|
+
end
|
32
|
+
|
33
|
+
```
|
10
34
|
|
11
35
|
|
12
36
|
|
2
前提の編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -3,6 +3,8 @@
|
|
3
3
|
|
4
4
|
|
5
5
|
パラメータで、取得した時刻から、where文でDBから検索を行いたいです。
|
6
|
+
|
7
|
+
パラメータと同じ時刻(release_on)である、要素を検索を行っています。
|
6
8
|
|
7
9
|
しかし、情報が持ってこれず困っています。
|
8
10
|
|
1
タイトル
test
CHANGED
File without changes
|
test
CHANGED
@@ -8,9 +8,7 @@
|
|
8
8
|
|
9
9
|
|
10
10
|
|
11
|
-
###
|
11
|
+
### 該当のコード
|
12
|
-
|
13
|
-
|
14
12
|
|
15
13
|
```
|
16
14
|
|