|
|
|
@ -1,8 +1,8 @@ |
|
|
|
<?php |
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Schema; |
|
|
|
use Illuminate\Database\Schema\Blueprint; |
|
|
|
use Illuminate\Database\Migrations\Migration; |
|
|
|
use Illuminate\Database\Schema\Blueprint; |
|
|
|
use Illuminate\Support\Facades\Schema; |
|
|
|
|
|
|
|
class CreateUsersTable extends Migration |
|
|
|
{ |
|
|
|
@ -29,7 +29,7 @@ class CreateUsersTable extends Migration |
|
|
|
$table->string('address')->nullable(); |
|
|
|
$table->string('city')->nullable(); |
|
|
|
$table->string('phone')->nullable(); |
|
|
|
$table->unsignedInteger('manager_id'); |
|
|
|
$table->unsignedInteger('manager_id')->nullable(); |
|
|
|
$table->rememberToken(); |
|
|
|
$table->timestamps(); |
|
|
|
}); |
|
|
|
|