Create 2024_10_06_035032_modify_caption_field_in_media_table.php

This commit is contained in:
Daniel Supernault 2024-10-05 21:51:45 -06:00
parent 424f0271c3
commit 13f77a0fc7
No known key found for this signature in database
GPG key ID: 23740873EE6F76A1

View file

@ -0,0 +1,28 @@
<?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::table('media', function (Blueprint $table) {
$table->text('caption')->nullable()->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('media', function (Blueprint $table) {
$table->text('caption')->nullable(false)->change();
});
}
};