ufutx.dma/database/migrations/2023_02_03_150221_create_assets_table.php
2026-03-04 14:42:40 +08:00

35 lines
707 B
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('assets', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('file');
$table->enum('type', ['PATENT', 'BRAND', 'OTHER']);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('assets');
}
};