質問編集履歴
1
実現したいことを具体的に記載しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
|
18
18
|
|
19
|
-
エラーメッセージに含まれる「where」は、collection_selectform
|
19
|
+
エラーメッセージに含まれる「where」は、collection_selectで、formにてプルダウンリストを表示させるため、
|
20
20
|
|
21
21
|
コードマスタからwhereで条件に合うコードリストを取ってきている箇所で使用しています。
|
22
22
|
|
@@ -224,6 +224,32 @@
|
|
224
224
|
|
225
225
|
|
226
226
|
|
227
|
+
### コードマスタ(schema.rb)※抜粋
|
228
|
+
|
229
|
+
```Ruby
|
230
|
+
|
231
|
+
create_table "codes", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci", force: :cascade do |t|
|
232
|
+
|
233
|
+
t.string "code_id", null: false
|
234
|
+
|
235
|
+
t.string "sub_id", null: false
|
236
|
+
|
237
|
+
t.string "code", null: false
|
238
|
+
|
239
|
+
t.string "name"
|
240
|
+
|
241
|
+
t.datetime "created_at", null: false
|
242
|
+
|
243
|
+
t.datetime "updated_at", null: false
|
244
|
+
|
245
|
+
t.index ["code_id", "sub_id", "code"], name: "index_codes_on_code_id_and_sub_id_and_code", unique: true
|
246
|
+
|
247
|
+
end
|
248
|
+
|
249
|
+
```
|
250
|
+
|
251
|
+
|
252
|
+
|
227
253
|
不足情報等ございましたら、お手数をお掛けし恐れ入りますが、
|
228
254
|
|
229
255
|
ご指摘いただけますと幸いです。
|