View file database/migrations/2018_04_20_180035_create_polls_table.php

File size: 781B
<?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
    {
        if (! Schema::hasTable('polls')) {
            Schema::create('polls', function (Blueprint $table) {
                $table->increments('id');
                $table->string('relate_type', 10);
                $table->integer('relate_id');
                $table->integer('user_id');
                $table->string('vote');
                $table->integer('created_at');

                $table->index(['relate_type', 'relate_id', 'user_id']);
            });
        }
    }

    public function down(): void
    {
        Schema::dropIfExists('polls');
    }
};