applicant-site/database/migrations/2024_01_22_070323_create_su...

34 lines
783 B
PHP
Raw Normal View History

2024-01-19 10:48:00 +03:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
2024-01-23 11:20:15 +03:00
Schema::create('submenu', function (Blueprint $table) {
2024-01-19 10:48:00 +03:00
$table->id();
$table->string('name');
2024-01-23 11:20:15 +03:00
$table->string('description');
2024-01-19 10:48:00 +03:00
$table->string('parent');
2024-01-23 11:20:15 +03:00
$table->string('meta_title');
$table->string('meta_description');
$table->string('meta_keywords');
2024-01-19 10:48:00 +03:00
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
2024-01-23 11:20:15 +03:00
Schema::dropIfExists('submenu');
2024-01-19 10:48:00 +03:00
}
};