Passed
Push — master ( dfa8a3...fd3e75 )
by Aimeos
11:59 queued 04:32
created
lib/custom/setup/default/schema/customer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 			$table->string( 'name' );
19 19
 			$table->string( 'password' );
20 20
 			$table->string( 'remember_token', 100 )->null( true );
21
-			$table->date( 'email_verified_at' )->null( true );;
21
+			$table->date( 'email_verified_at' )->null( true ); ;
22 22
 			$table->smallint( 'superuser' )->default( 0 );
23 23
 			$table->smallint( 'status' )->default( 1 );
24 24
 			$table->string( 'company', 100 )->default( '' );
Please login to merge, or discard this patch.
lib/custom/setup/CustomerRemoveConstraints.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 	{
33 33
 		$db = $this->db( 'db-customer' );
34 34
 
35
-		if( !$db->hasColumn( 'users', 'id' ) || $db->table( 'users')->col( 'id' )->type() === 'bigint' ) {
35
+		if( !$db->hasColumn( 'users', 'id' ) || $db->table( 'users' )->col( 'id' )->type() === 'bigint' ) {
36 36
 			return;
37 37
 		}
38 38
 
Please login to merge, or discard this patch.