fix auto-increment settings for test settings

This commit is contained in:
spencerrlongg 2024-01-02 18:10:59 -06:00
parent 8546407083
commit 9e84521098

View file

@ -62,7 +62,7 @@ class Settings
return $this->update([
'auto_increment_assets' => 1,
'auto_increment_prefix' => 'ABCD',
'next_auto_tag_base' => '123',
'next_auto_tag_base' => 123,
'zerofill_count' => 5
]);
}
@ -71,8 +71,8 @@ class Settings
{
return $this->update([
'auto_increment_assets' => 0,
'auto_increment_prefix' => '',
'next_auto_tag_base' => '',
'auto_increment_prefix' => 0,
'next_auto_tag_base' => 0,
'zerofill_count' => 0
]);
}