Размер файла: 909B
<?php
declare(strict_types=1);
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
final class CreateVotesTable extends Migration
{
/**
* Migrate Up.
*/
public function up(): void
{
if (! Schema::hasTable('votes')) {
Schema::create('votes', function (Blueprint $table) {
$table->increments('id');
$table->string('title', 100);
$table->text('description')->nullable();
$table->integer('count')->default(0);
$table->boolean('closed')->default(false);
$table->integer('created_at');
$table->integer('topic_id')->nullable();
});
}
}
/**
* Migrate Down.
*/
public function down(): void
{
Schema::dropIfExists('votes');
}
}