Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelnocharme.meumercado.app
/
vendor
/
laravelpkg
/
laravelchk
/
src
/
database
/
migrations
/
Editing: 2021_06_17_054551_create_soft_credentials_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateSoftCredentialsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('soft_credentials', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('key')->nullable(); $table->longText('value')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('soft_credentials'); } }
Save
Cancel