<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreatePaymentMethodsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('payment_methods', function (Blueprint $table) { $table->id(); $table->uuid('uid'); $table->string('name'); $table->string('type'); $table->text('options')->nullable(); $table->boolean('status')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('payment_methods'); } }