Skip to content

Commit

Permalink
Update DbType on Number field type config
Browse files Browse the repository at this point in the history
  • Loading branch information
cklei-carly committed Aug 15, 2024
1 parent 52ba816 commit 505e70a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FieldTypes/Configs/Number.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

#[ConfigName('number', 'Number', 'General')]
#[FormComponent(Forms\Components\TextInput::class)]
#[DbType('mysql', 'int')]
#[DbType('sqlite', 'integer')]
#[DbType('mysql', 'decimal')]
#[DbType('sqlite', 'numeric')]
class Number extends FieldTypeBaseConfig implements Contracts\FieldTypeConfig
{
use Concerns\HasAffixes;
Expand Down

0 comments on commit 505e70a

Please sign in to comment.