26 lines
578 B
PHP
26 lines
578 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(): void
|
||
|
|
{
|
||
|
|
Schema::create('assets', function (Blueprint $table) {
|
||
|
|
$table->id();
|
||
|
|
$table->string('symbol')->unique();
|
||
|
|
$table->string('full_name')->nullable();
|
||
|
|
$table->timestamps();
|
||
|
|
|
||
|
|
$table->index('symbol');
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
public function down(): void
|
||
|
|
{
|
||
|
|
Schema::dropIfExists('assets');
|
||
|
|
}
|
||
|
|
};
|