Untitled
unknown
plain_text
2 years ago
748 B
14
Indexable
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up()
{
Schema::create('banner_events', function (Blueprint $table) {
$table->id();
$table->string('banner_event_skeleton_name');
$table->string('banner_event_skeleton_image');
$table->string('post_banner_event_template_image');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('banner_events');
}
};
Editor is loading...
Leave a Comment