Addd user_id to suppliers seeder

This commit is contained in:
snipe
2015-09-28 16:32:56 -07:00
parent 10909a21cd
commit d15ef5c79d
3 changed files with 5 additions and 3 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
<?php
return array (
'app_version' => 'v2.0-152',
'hash_version' => 'v2.0-152-g9027ed8',
'app_version' => 'v2.0-153',
'hash_version' => 'v2.0-153-g141c77f',
);
+1 -1
View File
@@ -30,7 +30,7 @@ class ActionlogSeeder extends Seeder
'asset_id' => '1',
'checkedout_to' => '1',
'location_id' => NULL,
'created_at' => $date->modify('-10 day'),
'created_at' => $date->modify('-10 day'),
'asset_type' => 'hardware',
'note' => NULL,
'filename' => NULL,
+2
View File
@@ -15,12 +15,14 @@ class SuppliersSeeder extends Seeder
'name' => 'New Egg',
'created_at' => $date->modify('-10 day'),
'updated_at' => $date->modify('-3 day'),
'user_id' => 1,
);
$supplier[] = array(
'name' => 'Microsoft',
'created_at' => $date->modify('-10 day'),
'updated_at' => $date->modify('-3 day'),
'user_id' => 1,
);