Skip to content

Commit

Permalink
Update 3_add_unsuppressed_at_to_mail_events.php.stub
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisnoo authored Feb 19, 2025
1 parent cc72baf commit b429d9d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ return new class extends Migration
*/
public function up(): void
{
Schema::table('mail_events', function (Blueprint $table): void {
Schema::table(config('mails.database.tables.events', 'mail_events'), function (Blueprint $table): void {
$table->timestamp('unsuppressed_at')
->nullable()
->after('occurred_at');
});

Schema::table('mails', function (Blueprint $table): void {
Schema::table(config('mails.database.tables.mails', 'mails'), function (Blueprint $table): void {
$table->string('mailer')
->after('uuid');

Expand Down

0 comments on commit b429d9d

Please sign in to comment.