Passed
Push — develop ( 978102...1ef1e4 )
by nguereza
02:37
created
storage/migrations/20210705_065247_add_roles_table.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -9,18 +9,18 @@  discard block
 block discarded – undo
9 9
 {
10 10
     public function up(): void
11 11
     {
12
-      //Action when migrate up
12
+        //Action when migrate up
13 13
         $this->create('roles', function (CreateTable $table) {
14 14
             $table->integer('id')
15
-                  ->autoincrement()
16
-                 ->primary();
15
+                    ->autoincrement()
16
+                    ->primary();
17 17
             
18 18
             $table->string('name')
19
-                 ->description('The role name')
20
-                 ->notNull();
19
+                    ->description('The role name')
20
+                    ->notNull();
21 21
             
22 22
             $table->string('description')
23
-                 ->description('The role description');
23
+                    ->description('The role description');
24 24
             
25 25
             $table->timestamps();
26 26
 
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
     public function down(): void
32 32
     {
33
-      //Action when migrate down
33
+        //Action when migrate down
34 34
         $this->drop('roles');
35 35
     }
36 36
 }
Please login to merge, or discard this patch.
storage/migrations/20210705_065248_add_users_table.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -9,41 +9,41 @@  discard block
 block discarded – undo
9 9
 {
10 10
     public function up(): void
11 11
     {
12
-      //Action when migrate up
12
+        //Action when migrate up
13 13
         $this->create('users', function (CreateTable $table) {
14 14
             $table->integer('id')
15
-                  ->autoincrement()
16
-                 ->primary();
15
+                    ->autoincrement()
16
+                    ->primary();
17 17
 
18 18
             $table->string('username')
19
-                 ->description('The user username')
20
-                 ->unique()
21
-                 ->notNull();
19
+                    ->description('The user username')
20
+                    ->unique()
21
+                    ->notNull();
22 22
 
23 23
             $table->string('email')
24
-                 ->description('The user email')
25
-                 ->unique()
26
-                 ->notNull();
24
+                    ->description('The user email')
25
+                    ->unique()
26
+                    ->notNull();
27 27
 
28 28
             $table->string('password')
29
-                 ->description('The user password')
30
-                 ->notNull();
29
+                    ->description('The user password')
30
+                    ->notNull();
31 31
 
32 32
             $table->enum('status', ['A', 'D'])
33
-                 ->description('The user status, A=Active, D=Deactive/Locked')
34
-                 ->defaultValue('D')
35
-                 ->notNull();
33
+                    ->description('The user status, A=Active, D=Deactive/Locked')
34
+                    ->defaultValue('D')
35
+                    ->notNull();
36 36
 
37 37
             $table->string('lastname')
38
-                 ->description('The user lastname')
39
-                 ->notNull();
38
+                    ->description('The user lastname')
39
+                    ->notNull();
40 40
 
41 41
             $table->string('firstname')
42
-                 ->description('The user firstname')
43
-                  ->notNull();
42
+                    ->description('The user firstname')
43
+                    ->notNull();
44 44
 
45 45
             $table->string('role')
46
-                 ->description('The user role or function');
46
+                    ->description('The user role or function');
47 47
 
48 48
             $table->timestamps();
49 49
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
     public function down(): void
55 55
     {
56
-      //Action when migrate down
56
+        //Action when migrate down
57 57
         $this->drop('users');
58 58
     }
59 59
 }
Please login to merge, or discard this patch.
storage/migrations/20210823_152146_add_api_tokens_table.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -9,26 +9,26 @@  discard block
 block discarded – undo
9 9
 {
10 10
     public function up(): void
11 11
     {
12
-      //Action when migrate up
12
+        //Action when migrate up
13 13
         $this->create('tokens', function (CreateTable $table) {
14 14
             $table->integer('id')
15 15
                     ->autoincrement()
16 16
                     ->primary();
17 17
 
18 18
             $table->string('token')
19
-                   ->unique()
20
-                   ->notNull();
19
+                    ->unique()
20
+                    ->notNull();
21 21
 
22 22
             $table->string('refresh_token')
23
-                   ->unique()
24
-                   ->notNull();
23
+                    ->unique()
24
+                    ->notNull();
25 25
 
26 26
             $table->datetime('expire_at')
27
-                  ->notNull();
27
+                    ->notNull();
28 28
 
29 29
             $table->integer('user_id')
30
-                   ->description('The owner of the token')
31
-                   ->notNull();
30
+                    ->description('The owner of the token')
31
+                    ->notNull();
32 32
 
33 33
             $table->timestamps();
34 34
             
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
     public function down(): void
44 44
     {
45
-      //Action when migrate down
45
+        //Action when migrate down
46 46
         $this->drop('tokens');
47 47
     }
48 48
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     public function up(): void
11 11
     {
12 12
       //Action when migrate up
13
-        $this->create('tokens', function (CreateTable $table) {
13
+        $this->create('tokens', function(CreateTable $table) {
14 14
             $table->integer('id')
15 15
                     ->autoincrement()
16 16
                     ->primary();
Please login to merge, or discard this patch.
storage/migrations/20210717_094547_add_permissions_table.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -9,32 +9,32 @@  discard block
 block discarded – undo
9 9
 {
10 10
     public function up(): void
11 11
     {
12
-      //Action when migrate up
12
+        //Action when migrate up
13 13
         $this->create('permissions', function (CreateTable $table) {
14 14
             $table->integer('id')
15
-                  ->autoincrement()
16
-                 ->primary();
15
+                    ->autoincrement()
16
+                    ->primary();
17 17
             
18 18
             $table->string('code')
19
-                 ->description('The permission code')
20
-                 ->unique()
21
-                 ->notNull();
19
+                    ->description('The permission code')
20
+                    ->unique()
21
+                    ->notNull();
22 22
             
23 23
             $table->string('description')
24
-                 ->description('The permission description')
25
-                 ->notNull();
24
+                    ->description('The permission description')
25
+                    ->notNull();
26 26
             
27 27
             $table->string('depend')
28
-                 ->description('The permission dependency');
28
+                    ->description('The permission dependency');
29 29
             
30 30
             $table->integer('parent_id')
31
-                  ->description('The parent permission');
31
+                    ->description('The parent permission');
32 32
             
33 33
             $table->timestamps();
34 34
             
35 35
             $table->foreign('parent_id')
36
-                 ->references('permissions', 'id')
37
-                 ->onDelete('CASCADE');
36
+                    ->references('permissions', 'id')
37
+                    ->onDelete('CASCADE');
38 38
 
39 39
             $table->engine('INNODB');
40 40
         });
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
     public function down(): void
44 44
     {
45
-      //Action when migrate down
45
+        //Action when migrate down
46 46
         $this->drop('permissions');
47 47
     }
48 48
 }
Please login to merge, or discard this patch.
storage/migrations/20220109_074106_add_configuration_table.php 2 patches
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -11,15 +11,15 @@  discard block
 block discarded – undo
11 11
 {
12 12
     public function up(): void
13 13
     {
14
-      //Action when migrate up
14
+        //Action when migrate up
15 15
         $this->create('configurations', function (CreateTable $table) {
16 16
             $table->integer('id')
17 17
                     ->autoincrement()
18 18
                     ->primary();
19 19
 
20 20
             $table->string('env')
21
-                   ->description('The config environment')
22
-                   ->index();
21
+                    ->description('The config environment')
22
+                    ->index();
23 23
 
24 24
             $table->string('module')
25 25
                     ->description('The module')
@@ -27,24 +27,24 @@  discard block
 block discarded – undo
27 27
                     ->notNull();
28 28
 
29 29
             $table->string('name')
30
-                  ->description('The config name')
31
-                  ->index()
32
-                  ->notNull();
30
+                    ->description('The config name')
31
+                    ->index()
32
+                    ->notNull();
33 33
 
34 34
             $table->text('value')
35 35
                     ->description('The config value');
36 36
 
37 37
             $table->string('type')
38
-                   ->description('The config data type')
39
-                   ->notNull();
38
+                    ->description('The config data type')
39
+                    ->notNull();
40 40
 
41 41
             $table->text('comment')
42
-                  ->description('The config description');
42
+                    ->description('The config description');
43 43
 
44 44
             $table->enum('status', ['Y', 'N'])
45
-                 ->description('The config status')
46
-                 ->defaultValue('Y')
47
-                 ->notNull();
45
+                    ->description('The config status')
46
+                    ->defaultValue('Y')
47
+                    ->notNull();
48 48
 
49 49
             $table->timestamps();
50 50
             
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
     public function down(): void
56 56
     {
57
-      //Action when migrate down
57
+        //Action when migrate down
58 58
         $this->drop('configurations');
59 59
     }
60 60
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     public function up(): void
13 13
     {
14 14
       //Action when migrate up
15
-        $this->create('configurations', function (CreateTable $table) {
15
+        $this->create('configurations', function(CreateTable $table) {
16 16
             $table->integer('id')
17 17
                     ->autoincrement()
18 18
                     ->primary();
Please login to merge, or discard this patch.
storage/migrations/20220323_095520_add_audits_table.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@  discard block
 block discarded – undo
11 11
 {
12 12
     public function up(): void
13 13
     {
14
-      //Action when migrate up
14
+        //Action when migrate up
15 15
         $this->create('audits', function (CreateTable $table) {
16 16
             $table->integer('id')
17
-                  ->autoincrement()
18
-                  ->primary();
17
+                    ->autoincrement()
18
+                    ->primary();
19 19
 
20 20
             $table->string('event')
21 21
                     ->description('The audit event')
@@ -23,20 +23,20 @@  discard block
 block discarded – undo
23 23
                     ->notNull();
24 24
 
25 25
             $table->text('detail')
26
-                  ->description('The audit detail');
26
+                    ->description('The audit detail');
27 27
 
28 28
             $table->string('url')
29
-                  ->description('The audit action URL');
29
+                    ->description('The audit action URL');
30 30
 
31 31
             $table->string('ip')
32
-                 ->description('The IP address')
33
-                 ->notNull();
32
+                    ->description('The IP address')
33
+                    ->notNull();
34 34
 
35 35
             $table->string('user_agent')
36
-                  ->description('The user agent');
36
+                    ->description('The user agent');
37 37
 
38 38
             $table->string('tags')
39
-                  ->description('The audit tags');
39
+                    ->description('The audit tags');
40 40
 
41 41
             $table->datetime('date')
42 42
                     ->description('audit date')
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 
57 57
     public function down(): void
58 58
     {
59
-      //Action when migrate down
59
+        //Action when migrate down
60 60
         $this->drop('audits');
61 61
     }
62 62
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     public function up(): void
13 13
     {
14 14
       //Action when migrate up
15
-        $this->create('audits', function (CreateTable $table) {
15
+        $this->create('audits', function(CreateTable $table) {
16 16
             $table->integer('id')
17 17
                   ->autoincrement()
18 18
                   ->primary();
Please login to merge, or discard this patch.