9 lines
175 B
PHP
9 lines
175 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
Schema::table('users', function (Blueprint $table) {
|
|
$table->rememberToken();
|
|
});
|