mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-11 13:57:41 -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([
|
return $this->update([
|
||||||
'auto_increment_assets' => 1,
|
'auto_increment_assets' => 1,
|
||||||
'auto_increment_prefix' => 'ABCD',
|
'auto_increment_prefix' => 'ABCD',
|
||||||
'next_auto_tag_base' => '123',
|
'next_auto_tag_base' => 123,
|
||||||
'zerofill_count' => 5
|
'zerofill_count' => 5
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
@ -71,8 +71,8 @@ class Settings
|
||||||
{
|
{
|
||||||
return $this->update([
|
return $this->update([
|
||||||
'auto_increment_assets' => 0,
|
'auto_increment_assets' => 0,
|
||||||
'auto_increment_prefix' => '',
|
'auto_increment_prefix' => 0,
|
||||||
'next_auto_tag_base' => '',
|
'next_auto_tag_base' => 0,
|
||||||
'zerofill_count' => 0
|
'zerofill_count' => 0
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue