34 lines
839 B
PHP
34 lines
839 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.
|
||
|
|
*/
|
||
|
|
public function up(): void
|
||
|
|
{
|
||
|
|
Schema::create('media', function (Blueprint $table) {
|
||
|
|
$table->id();
|
||
|
|
$table->string('filename');
|
||
|
|
$table->string('path')->unique();
|
||
|
|
$table->string('mime_type')->nullable();
|
||
|
|
$table->integer('size')->nullable();
|
||
|
|
$table->decimal('focal_x', 5, 2)->default(50.00);
|
||
|
|
$table->decimal('focal_y', 5, 2)->default(50.00);
|
||
|
|
$table->timestamps();
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Reverse the migrations.
|
||
|
|
*/
|
||
|
|
public function down(): void
|
||
|
|
{
|
||
|
|
Schema::dropIfExists('media');
|
||
|
|
}
|
||
|
|
};
|