Files
sifatbaho-php/database/migrations/2023_01_21_192125_create_certificates_table.php
2026-04-05 05:31:24 +05:00

34 lines
742 B
PHP
Executable File

<?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('certificates', function (Blueprint $table) {
$table->id();
$table->string('type')->nullable(false);
$table->string('path')->nullable(false);
$table->tinyInteger('sort')->default(0);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('certificates');
}
};