Files
Faculty-Documentation/database/migrations/2025_01_25_201943_create_responses_table.php
2025-01-27 01:05:01 +05:30

39 lines
1.2 KiB
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateResponsesTable extends Migration
{
// Updated Migration
public function up()
{
Schema::create('responses', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->string('organising_institute');
$table->text('address');
$table->unsignedBigInteger('department_id');
$table->unsignedBigInteger('faculty_id');
$table->dateTime('start_date');
$table->dateTime('end_date');
$table->integer('num_days');
$table->string('activity_type');
$table->string('category');
$table->string('level');
$table->string('proof')->nullable();
$table->foreign('faculty_id')->references('id')->on('users')->onDelete('cascade');
$table->foreign('department_id')->references('id')->on('departments')->onDelete('cascade');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('responses');
}
}