adrema/database/migrations/2024_06_26_224159_create_fi...

34 lines
649 B
PHP
Raw Permalink Normal View History

2024-06-27 00:00:29 +02: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.
*
* @return void
*/
public function up()
{
2024-06-27 17:41:54 +02:00
Schema::create('fileshares', function (Blueprint $table) {
2024-06-27 00:00:29 +02:00
$table->id();
$table->string('name');
$table->json('type');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
2024-06-27 17:41:54 +02:00
Schema::dropIfExists('fileshares');
2024-06-27 00:00:29 +02:00
}
};