Update DefaultTrueBooleanDatabaseTableColumn description
authorXeroX <xerox8521@users.noreply.github.com>
Tue, 21 Mar 2023 18:01:56 +0000 (19:01 +0100)
committerTim Düsterhus <duesterhus@woltlab.com>
Mon, 27 Mar 2023 08:07:01 +0000 (10:07 +0200)
Resolves #366

docs/package/database-php-api.md

index 33a71e9f1464bfce5f1124ab7806c892d1dc3001..54e9fc3016a4bb23d31d5cdd7f0b04b7fc68ad4c 100644 (file)
@@ -82,7 +82,7 @@ Depending on the specific column class implementing additional interfaces, the f
 Additionally, there are some additionally classes of commonly used columns with specific properties:
 
 - `DefaultFalseBooleanDatabaseTableColumn` (a `tinyint` column with length `1`, default value `0` and whose values cannot be `null`)
-- `DefaultTrueBooleanDatabaseTableColumn` (a `tinyint` column with length `0`, default value `0` and whose values cannot be `null`)
+- `DefaultTrueBooleanDatabaseTableColumn` (a `tinyint` column with length `1`, default value `1` and whose values cannot be `null`)
 - `NotNullInt10DatabaseTableColumn` (a `int` column with length `10` and whose values cannot be `null`)
 - `NotNullVarchar191DatabaseTableColumn` (a `varchar` column with length `191` and whose values cannot be `null`)
 - `NotNullVarchar255DatabaseTableColumn` (a `varchar` column with length `255` and whose values cannot be `null`)