View file database/migrations/2018_04_20_180051_create_voteanswer_table.php

File size: 636B
<?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('voteanswer')) {
            Schema::create('voteanswer', function (Blueprint $table) {
                $table->increments('id');
                $table->integer('vote_id');
                $table->string('answer');
                $table->integer('result')->default(0);
            });
        }
    }

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