@@ -18,7 +18,7 @@ |
||
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( '' ); |
@@ -32,7 +32,7 @@ |
||
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 |