Merge pull request #15811 from snipe/small_fix_for_embiguous_created_by

Specify table name in select for models controller
This commit is contained in:
snipe 2024-11-14 10:20:16 +00:00 committed by GitHub
commit 70d9ef428c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -56,17 +56,17 @@ class AssetModelsController extends Controller
'models.id',
'models.image',
'models.name',
'model_number',
'min_amt',
'eol',
'created_by',
'requestable',
'models.model_number',
'models.min_amt',
'models.eol',
'models.created_by',
'models.requestable',
'models.notes',
'models.created_at',
'category_id',
'manufacturer_id',
'depreciation_id',
'fieldset_id',
'models.category_id',
'models.manufacturer_id',
'models.depreciation_id',
'models.fieldset_id',
'models.deleted_at',
'models.updated_at',
])