Skip to content

Commit

Permalink
fix ColumnOperation nullable constraint to null
Browse files Browse the repository at this point in the history
  • Loading branch information
Maometos committed Nov 30, 2023
1 parent bcad1ac commit 80e9b6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Migrations/Operations/ColumnOperation.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class ColumnOperation extends Operation
public string $Type;
public ?int $Max;
public ?int $Scale;
public bool $Nullable = false;
public bool $Nullable = true;
public bool $Identity = false;
public $Default = null;

Expand Down

0 comments on commit 80e9b6c

Please sign in to comment.