Размер файла: 1.01Kb
<?php
declare(strict_types=1);
use App\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
final class CreatePaidAdvertsTable extends Migration
{
/**
* Migrate Up.
*/
public function up(): void
{
if (! $this->schema->hasTable('paid_adverts')) {
$this->schema->create('paid_adverts', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id');
$table->string('place', 20);
$table->string('site', 100);
$table->json('names');
$table->string('color', 10)->nullable();
$table->boolean('bold')->default(false);
$table->string('comment')->nullable();
$table->integer('created_at');
$table->integer('deleted_at')->nullable();
});
}
}
/**
* Migrate Down.
*/
public function down(): void
{
$this->schema->dropIfExists('paid_adverts');
}
}