Skip to content

Commit f00ccd5

Browse files
authored
Merge pull request #36 from mailcarrierapp/feat/reply-to
Accept a replyTo param
2 parents c4a6734 + db7b3e3 commit f00ccd5

20 files changed

+99
-10
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
6+
7+
return new class extends Migration {
8+
public function up(): void
9+
{
10+
Schema::table('logs', function (Blueprint $table) {
11+
$table->json('replyTo')->nullable();
12+
});
13+
}
14+
15+
public function down(): void
16+
{
17+
Schema::table('logs', function (Blueprint $table) {
18+
$table->dropColumn('replyTo');
19+
});
20+
}
21+
};

0 commit comments

Comments
 (0)