Просмотр файла database/migrations/20180420180051_create_voteanswer_table.php

Размер файла: 720B
<?php

declare(strict_types=1);

use App\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;

final class CreateVoteanswerTable extends Migration
{
    /**
     * Migrate Up.
     */
    public function up(): void
    {
        if (! $this->schema->hasTable('voteanswer')) {
            $this->schema->create('voteanswer', function (Blueprint $table) {
                $table->increments('id');
                $table->integer('vote_id');
                $table->string('answer', 50);
                $table->integer('result')->default(0);
            });
        }
    }

    /**
     * Migrate Down.
     */
    public function down(): void
    {
        $this->schema->dropIfExists('voteanswer');
    }
}