Skip to content

Commit 69ede7f

Browse files
committed
Merge branch 'refs/heads/develop'
2 parents ec4172d + 0e3bcfe commit 69ede7f

File tree

2 files changed

+22
-15
lines changed

2 files changed

+22
-15
lines changed

app/database/seeds/LicenseSeatsSeeder.php

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,34 +18,38 @@ public function run()
1818
'created_at' => $date->modify('-10 day'),
1919
'updated_at' => $date->modify('-3 day'),
2020
'deleted_at' => NULL,
21-
'notes' =>'',
21+
'notes' => '',
22+
'user_id' => '1',
2223
);
2324

2425
$license_seats[] = array(
2526
'license_id' => '1',
26-
'assigned_to' => NULL,
27+
'assigned_to' => '0',
2728
'created_at' => $date->modify('-10 day'),
2829
'updated_at' => $date->modify('-3 day'),
2930
'deleted_at' => NULL,
30-
'notes' =>'',
31+
'notes' => '',
32+
'user_id' => '1',
3133
);
3234

3335
$license_seats[] = array(
3436
'license_id' => '1',
35-
'assigned_to' => NULL,
37+
'assigned_to' => '0',
3638
'created_at' => $date->modify('-10 day'),
3739
'updated_at' => $date->modify('-3 day'),
3840
'deleted_at' => NULL,
39-
'notes' =>'',
41+
'notes' => '',
42+
'user_id' => '1',
4043
);
4144

4245
$license_seats[] = array(
4346
'license_id' => '1',
44-
'assigned_to' => NULL,
47+
'assigned_to' => '0',
4548
'created_at' => $date->modify('-10 day'),
4649
'updated_at' => $date->modify('-3 day'),
4750
'deleted_at' => NULL,
48-
'notes' =>'',
51+
'notes' => '',
52+
'user_id' => '1',
4953
);
5054

5155
$license_seats[] = array(
@@ -54,7 +58,8 @@ public function run()
5458
'created_at' => $date->modify('-10 day'),
5559
'updated_at' => $date->modify('-3 day'),
5660
'deleted_at' => NULL,
57-
'notes' =>'',
61+
'notes' => '',
62+
'user_id' => '1',
5863
);
5964

6065
$license_seats[] = array(
@@ -63,17 +68,19 @@ public function run()
6368
'created_at' => $date->modify('-10 day'),
6469
'updated_at' => $date->modify('-3 day'),
6570
'deleted_at' => NULL,
66-
'notes' =>'',
71+
'notes' => '',
72+
'user_id' => '1',
6773
);
6874

6975
// Pending (status_id is null, assigned_to = 0)
7076
$license_seats[] = array(
7177
'license_id' => '2',
72-
'assigned_to' => NULL,
78+
'assigned_to' => '0',
7379
'created_at' => $date->modify('-10 day'),
7480
'updated_at' => $date->modify('-3 day'),
7581
'deleted_at' => NULL,
76-
'notes' =>'',
82+
'notes' => '',
83+
'user_id' => '1',
7784

7885
);
7986

app/database/seeds/LicensesSeeder.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ public function run()
2424
'license_name' => '',
2525
'license_email' => '',
2626
'notes' => '',
27-
'user_id' =>1,
28-
'depreciation_id' =>2,
27+
'user_id' => 1,
28+
'depreciation_id' => 2,
2929
'deleted_at' => NULL,
3030
'depreciate' => '0',
3131
);
@@ -43,8 +43,8 @@ public function run()
4343
'license_name' => 'Alison Gianotto',
4444
'license_email' => '[email protected]',
4545
'notes' => '',
46-
'user_id' =>1,
47-
'depreciation_id' =>2,
46+
'user_id' => 1,
47+
'depreciation_id' => 2,
4848
'deleted_at' => NULL,
4949
'depreciate' => '0',
5050
);

0 commit comments

Comments
 (0)