fix: migrate boolean columns to tinyint(1)

These columns were previously tiny ints without the (1) display width or regular ints, or smallints. They should all be tinyint(1).
This commit is contained in:
Roardom
2025-02-17 08:22:54 +00:00
parent ddd9ce7220
commit b2e29cfcf0
31 changed files with 143 additions and 58 deletions

View File

@@ -147,7 +147,7 @@ class RequestController extends Controller
]);
// Auto Shout
if ($torrentRequest->anon == 0) {
if (!$torrentRequest->anon) {
$this->chatRepository->systemMessage(
\sprintf('[url=%s]%s[/url] has created a new request [url=%s]%s[/url]', href_profile($user), $user->username, href_request($torrentRequest), $torrentRequest->name)
);