Skip to content

Commit

Permalink
Fix column not found - hidden/hide
Browse files Browse the repository at this point in the history
  • Loading branch information
slawkens committed Nov 22, 2024
1 parent 17210b7 commit c0a6603
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system/migrations/27.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
'player_id' => 1,
'php' => 0,
'access' => 0,
'hidden' => 0,
($db->hasColumn(TABLE_PREFIX . 'pages', 'hide') ? 'hide' : 'hidden') => 0,
]);
}

Expand All @@ -30,7 +30,7 @@
'player_id' => 1,
'php' => 0,
'access' => 0,
'hidden' => 0,
($db->hasColumn(TABLE_PREFIX . 'pages', 'hide') ? 'hide' : 'hidden') => 0,
]);
}
};
Expand Down

0 comments on commit c0a6603

Please sign in to comment.