D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
medica-plus.online
/
database
/
migrations
/
Filename :
2021_05_12_155401_add_auth_token_seller.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddAuthTokenSeller extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('sellers', function (Blueprint $table) { $table->text('auth_token')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('sellers', function (Blueprint $table) { // }); } }