applicant-site/database/migrations/2024_01_22_074748_create_fi...

30 lines
596 B
PHP
Raw Normal View History

2024-01-19 10:48:00 +03:00
<?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
{
2024-01-23 11:20:15 +03:00
Schema::create('file', function (Blueprint $table) {
2024-01-19 10:48:00 +03:00
$table->id();
$table->string('name');
$table->string('url');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
2024-01-23 11:20:15 +03:00
Schema::dropIfExists('file');
2024-01-19 10:48:00 +03:00
}
};