/
var
/
www
/
html
/
plugin-techloyce
/
database
/
migrations
/
Upload File
HOME
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateAuthTwiliosTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('auth_twilios', function (Blueprint $table) { $table->uuid('id')->unique()->primary(); $table->text('identifier')->nullable(); $table->text('twilio_phone_number')->nullable(); $table->text('twilio_auth_token')->nullable(); $table->text('twilio_account_sid')->nullable(); $table->text('source')->nullable(); $table->text('zoho_domain')->nullable(); $table->text('webhook')->nullable(); $table->text('source_refresh_token')->nullable(); $table->text('source_access_token')->nullable(); $table->string('source_expires_in')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('auth_twilios'); } }