Passed
Push — master ( c606fb...d7b7f6 )
by nguereza
11:42
created
storage/migrations/20220109_074106_add_configuration_table.php 3 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.
Braces   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,12 +7,11 @@
 block discarded – undo
7 7
 use Platine\Database\Schema\CreateTable;
8 8
 use Platine\Framework\Migration\AbstractMigration;
9 9
 
10
-class AddConfigurationTable20220109074106 extends AbstractMigration
11
-{
10
+class AddConfigurationTable20220109074106 extends AbstractMigration {
12 11
     public function up(): void
13 12
     {
14 13
       //Action when migrate up
15
-        $this->create('configurations', function (CreateTable $table) {
14
+        $this->create('configurations', function (CreateTable $table) {
16 15
             $table->integer('id')
17 16
                     ->autoincrement()
18 17
                     ->primary();
Please login to merge, or discard this patch.
storage/migrations/20210823_152146_add_api_tokens_table.php 3 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.
Braces   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,12 +5,11 @@
 block discarded – undo
5 5
 use Platine\Database\Schema\CreateTable;
6 6
 use Platine\Framework\Migration\AbstractMigration;
7 7
 
8
-class AddApiTokensTable20210823152146 extends AbstractMigration
9
-{
8
+class AddApiTokensTable20210823152146 extends AbstractMigration {
10 9
     public function up(): void
11 10
     {
12 11
       //Action when migrate up
13
-        $this->create('tokens', function (CreateTable $table) {
12
+        $this->create('tokens', function (CreateTable $table) {
14 13
             $table->integer('id')
15 14
                     ->autoincrement()
16 15
                     ->primary();
Please login to merge, or discard this patch.
storage/migrations/20220323_095520_add_audits_table.php 3 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.
Braces   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,12 +7,11 @@
 block discarded – undo
7 7
 use Platine\Database\Schema\CreateTable;
8 8
 use Platine\Framework\Migration\AbstractMigration;
9 9
 
10
-class AddAuditsTable20220323095520 extends AbstractMigration
11
-{
10
+class AddAuditsTable20220323095520 extends AbstractMigration {
12 11
     public function up(): void
13 12
     {
14 13
       //Action when migrate up
15
-        $this->create('audits', function (CreateTable $table) {
14
+        $this->create('audits', function (CreateTable $table) {
16 15
             $table->integer('id')
17 16
                   ->autoincrement()
18 17
                   ->primary();
Please login to merge, or discard this patch.