34 lines
793 B
PHP
Executable File
34 lines
793 B
PHP
Executable File
<?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(): void
|
|
{
|
|
Schema::create('attachments', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->nullableMorphs('attachmentable');
|
|
$table->string('type', 20);
|
|
$table->string('name', 50);
|
|
$table->string('extension', 10);
|
|
$table->string('size', 10);
|
|
$table->timestamps();
|
|
$table->softDeletes();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('attachments');
|
|
}
|
|
};
|