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

33 lines
820 B
PHP
Raw Normal View History

2024-02-26 11:34:33 +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
{
Schema::create('periods', function (Blueprint $table) {
$table->id();
$table->integer('position');
2024-02-26 13:10:16 +03:00
$table->float('period');
2024-02-26 11:34:33 +03:00
$table->foreignId('education_form_id')->constrained('education_forms');
$table->foreignId('direction_id')->constrained('directions');
$table->text('description')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('periods');
}
};