Reservasi-Cafe/database/migrations/2024_03_19_create_bestselle...

24 lines
551 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up()
{
Schema::create('bestsellers', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('image');
$table->text('description');
$table->timestamps();
});
}
public function down()
{
Schema::dropIfExists('bestsellers');
}
};