PixelPlacerBot/database/migrations/2024_07_28_031243_create_pa...
2024-07-28 18:06:05 -04:00

23 lines
475 B
PHP

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