Viewing: 2023_06_06_124402_create_technologies_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('news_round_ups', function (Blueprint $table) { $table->id(); $table->string('confenrece'); $table->string('title'); $table->string('image_url')->nullable(); $table->string('image_alt')->nullable(); $table->date('date')->nullable(); $table->text('place')->nullable(); $table->text('intro')->nullable(); $table->string('slug')->nullable(); $table->string('old_slug')->nullable(); $table->string('deleted_at')->nullable(); $table->string('approved_at')->nullable(); $table->boolean('status')->default(TRUE); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('news_round_ups'); } };
Return