OwlCyberSecurity - MANAGER
Edit File: 2022_08_14_095713_create_accounts_table.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::create('accounts', function (Blueprint $table) { $table->id(); $table->string('account_name', 255)->nullable(); $table->string('username', 255)->nullable(); $table->string('password', 255)->nullable(); $table->string('url', 500)->nullable(); $table->string('description', 500)->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('accounts'); } };