Fixed invalid seed data
This commit is contained in:
@@ -16,7 +16,7 @@ class ActionlogSeeder extends Seeder {
|
||||
'user_id' => '1',
|
||||
'action_type' => 'checkout',
|
||||
'asset_id' => '1',
|
||||
'checkedout_to' => '3',
|
||||
'checkedout_to' => '2',
|
||||
'location_id' => '3',
|
||||
'added_on' => $date->modify('-10 day'),
|
||||
'asset_type' => 'hardware',
|
||||
@@ -29,7 +29,7 @@ class ActionlogSeeder extends Seeder {
|
||||
'user_id' => '1',
|
||||
'action_type' => 'checkin from',
|
||||
'asset_id' => '1',
|
||||
'checkedout_to' => '3',
|
||||
'checkedout_to' => '2',
|
||||
'location_id' => NULL,
|
||||
'added_on' => $date->modify('-10 day'),
|
||||
'asset_type' => 'hardware',
|
||||
@@ -42,7 +42,7 @@ class ActionlogSeeder extends Seeder {
|
||||
'user_id' => '1',
|
||||
'action_type' => 'checkout',
|
||||
'asset_id' => '1',
|
||||
'checkedout_to' => '3',
|
||||
'checkedout_to' => '1',
|
||||
'location_id' => '3',
|
||||
'added_on' => $date->modify('-10 day'),
|
||||
'asset_type' => 'software',
|
||||
@@ -55,7 +55,7 @@ class ActionlogSeeder extends Seeder {
|
||||
'user_id' => '1',
|
||||
'action_type' => 'checkin from',
|
||||
'asset_id' => '1',
|
||||
'checkedout_to' => '3',
|
||||
'checkedout_to' => '2',
|
||||
'location_id' => NULL,
|
||||
'added_on' => $date->modify('-10 day'),
|
||||
'asset_type' => 'software',
|
||||
|
||||
Reference in New Issue
Block a user