grocery-crud-enterprise version : 2.5.7
php version : 5.6
database : postgres 9.6
Columns with multiple underscores in their name won't appear when manually specifying them.
Example :
$this->crud->setTable('my_table')->columns(['column_a', 'column_b', 'column_with_multiple_underscore']);
The last column will not appear in the grid.
When NOT specifying the columns
$this->crud->setTable('my_table');
The last column will appear correctly in the grid.