File: /home/xedaptot/be.naniguide.com/database/migrations/2023_03_06_142841_add_preheader_to_emails.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddPreheaderToEmails extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('emails', function (Blueprint $table) {
$table->text('preheader')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('emails', function (Blueprint $table) {
$table->dropColumn('preheader');
});
}
}