Skip to content

Commit ec4172d

Browse files
committed
Merge branch 'refs/heads/develop'
2 parents 4c0af1e + 8eeae70 commit ec4172d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

app/database/seeds/LicensesSeeder.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@ public function run()
2121
'created_at' => $date->modify('-10 day'),
2222
'updated_at' => $date->modify('-3 day'),
2323
'seats' => 5,
24-
'license_name' => NULL,
25-
'license_email' => NULL,
26-
'notes' =>'',
24+
'license_name' => '',
25+
'license_email' => '',
26+
'notes' => '',
2727
'user_id' =>1,
2828
'depreciation_id' =>2,
2929
'deleted_at' => NULL,
30+
'depreciate' => '0',
3031
);
3132

3233
// Pending (status_id is null, assigned_to = 0)
@@ -41,10 +42,11 @@ public function run()
4142
'seats' => 2,
4243
'license_name' => 'Alison Gianotto',
4344
'license_email' => '[email protected]',
44-
'notes' =>'',
45+
'notes' => '',
4546
'user_id' =>1,
4647
'depreciation_id' =>2,
4748
'deleted_at' => NULL,
49+
'depreciate' => '0',
4850
);
4951

5052
// Delete all the old data

0 commit comments

Comments
 (0)