2024-07-10 12:42:50 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
2024-07-29 15:57:20 +03:00
|
|
|
return new class extends Migration
|
2024-07-10 12:42:50 +03:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
2024-07-29 15:57:20 +03:00
|
|
|
public function up(): void
|
2024-07-10 12:42:50 +03:00
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
2024-07-29 15:57:20 +03:00
|
|
|
public function down(): void
|
2024-07-10 12:42:50 +03:00
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
2024-07-29 15:57:20 +03:00
|
|
|
};
|