33 lines
729 B
PHP
33 lines
729 B
PHP
<?php
|
||
|
||
use Illuminate\Database\Migrations\Migration;
|
||
use Illuminate\Database\Schema\Blueprint;
|
||
use Illuminate\Support\Facades\Schema;
|
||
|
||
return new class extends Migration
|
||
{
|
||
/**
|
||
* Run the migrations.
|
||
*
|
||
* @return void
|
||
*/
|
||
public function up()
|
||
{
|
||
Schema::table('users', function (Blueprint $table) {
|
||
$table->tinyInteger('source')->nullable()->comment("用户来源 1:小程序 2:h5 3:企业微信 4:app")->after("fat_device");
|
||
});
|
||
}
|
||
|
||
/**
|
||
* Reverse the migrations.
|
||
*
|
||
* @return void
|
||
*/
|
||
public function down()
|
||
{
|
||
Schema::table('users', function (Blueprint $table) {
|
||
$table->dropColumn("source");
|
||
});
|
||
}
|
||
};
|