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-02-13 15:37:41 +03:00
|
|
|
Schema::create('admissions', function (Blueprint $table) {
|
2024-01-19 10:48:00 +03:00
|
|
|
$table->id();
|
|
|
|
$table->string('name');
|
2024-02-13 15:37:41 +03:00
|
|
|
$table->text('description');
|
|
|
|
$table->string('slug');
|
2024-01-23 17:58:48 +03:00
|
|
|
$table->integer('position');
|
2024-01-19 10:48:00 +03:00
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
|
|
|
public function down(): void
|
|
|
|
{
|
2024-02-13 15:37:41 +03:00
|
|
|
Schema::dropIfExists('admissions');
|
2024-01-19 10:48:00 +03:00
|
|
|
}
|
|
|
|
};
|