mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
fix auto-increment settings for test settings
This commit is contained in:
parent
8546407083
commit
9e84521098
|
@ -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
|
||||
]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue