Fix: Add core_config table for central admin login view
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 2m12s

This commit is contained in:
Cauê Faleiros
2026-02-04 09:12:44 -03:00
parent afdda2dab0
commit a5a048d581

View File

@@ -0,0 +1,33 @@
<?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('core_config', function (Blueprint $table) {
$table->increments('id');
$table->string('code');
$table->string('value');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('core_config');
}
};