mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2025-01-12 13:44:41 +08:00
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();
|
|
});
|