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

31 lines
689 B
PHP
Raw Normal View History

2024-04-23 14:23:21 +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('feedback', function (Blueprint $table) {
$table->id();
$table->string('contact', 255);
$table->text('text');
$table->foreignId('status_id')->constrained('feedback_statuses');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('feedback');
}
};