Completed
Push — dev5 ( f3ede3...502bc5 )
by Ron
08:16
created
database/migrations/2018_11_27_193438_create_settings_table.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -22,16 +22,16 @@
 block discarded – undo
22 22
         
23 23
         //  Insert default settings
24 24
         DB::table('settings')->insert([
25
-            ['created_at' => \Carbon\Carbon::now(), 'key' => 'app.logo',          'value' => config('app.logo')],
26
-            ['created_at' => \Carbon\Carbon::now(), 'key' => 'app.timezone',      'value' => config('app.timezone')],
27
-            ['created_at' => \Carbon\Carbon::now(), 'key' => 'mail.host',         'value' => config('mail.host')],
28
-            ['created_at' => \Carbon\Carbon::now(), 'key' => 'mail.port',         'value' => config('mail.port')],
29
-            ['created_at' => \Carbon\Carbon::now(), 'key' => 'mail.encryption',   'value' => config('mail.encryption')],
30
-            ['created_at' => \Carbon\Carbon::now(), 'key' => 'mail.username',     'value' => config('mail.username')],
31
-            ['created_at' => \Carbon\Carbon::now(), 'key' => 'mail.password',     'value' => config('mail.password')],
25
+            ['created_at' => \Carbon\Carbon::now(), 'key' => 'app.logo', 'value' => config('app.logo')],
26
+            ['created_at' => \Carbon\Carbon::now(), 'key' => 'app.timezone', 'value' => config('app.timezone')],
27
+            ['created_at' => \Carbon\Carbon::now(), 'key' => 'mail.host', 'value' => config('mail.host')],
28
+            ['created_at' => \Carbon\Carbon::now(), 'key' => 'mail.port', 'value' => config('mail.port')],
29
+            ['created_at' => \Carbon\Carbon::now(), 'key' => 'mail.encryption', 'value' => config('mail.encryption')],
30
+            ['created_at' => \Carbon\Carbon::now(), 'key' => 'mail.username', 'value' => config('mail.username')],
31
+            ['created_at' => \Carbon\Carbon::now(), 'key' => 'mail.password', 'value' => config('mail.password')],
32 32
             ['created_at' => \Carbon\Carbon::now(), 'key' => 'mail.from.address', 'value' => config('mail.from.address')],
33
-            ['created_at' => \Carbon\Carbon::now(), 'key' => 'mail.from.name',    'value' => config('mail.from.name')],
34
-            ['created_at' => \Carbon\Carbon::now(), 'key' => 'user.passExpires',  'value' => 30],
33
+            ['created_at' => \Carbon\Carbon::now(), 'key' => 'mail.from.name', 'value' => config('mail.from.name')],
34
+            ['created_at' => \Carbon\Carbon::now(), 'key' => 'user.passExpires', 'value' => 30],
35 35
         ]);
36 36
     }
37 37
 
Please login to merge, or discard this patch.
database/migrations/2019_10_19_175019_create_user_permissions_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('user_permissions', function (Blueprint $table) {
16
+        Schema::create('user_permissions', function(Blueprint $table) {
17 17
             $table->increments('user_id')->unsigned();
18 18
             $table->boolean('manage_users')->default(0);
19 19
             $table->boolean('run_reports')->default(0);
Please login to merge, or discard this patch.