Files
persegi/database/migrations/2026_04_02_205142_create_votes_table.php
T

29 lines
858 B
PHP
Raw Normal View History

2026-04-03 04:02:11 +07:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::create('votes', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->text('description')->nullable();
$table->enum('type', ['activity', 'finance', 'general']);
$table->unsignedBigInteger('related_id')->nullable();
$table->enum('status', ['open', 'closed'])->default('open');
$table->timestamp('deadline')->nullable();
$table->foreignId('created_by')->constrained('users');
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('votes');
}
};