Hintergründe zum EventInvitePage Layout Customizer hinzugefügt. Badge und CTA entfernt, Textfelder zu Textareas gemacht. Geschenkgutscheine verbessert, E-Mail-Versand ergänzt + Resend + Confirmationseite mit Code-Copy und Link zur Package-Seite, die den Code als URL-Parameter enthält.
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
<?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('gift_vouchers', function (Blueprint $table) {
|
||||
$table->timestamp('recipient_delivery_scheduled_at')->nullable()->after('redeemed_at');
|
||||
$table->timestamp('recipient_delivery_sent_at')->nullable()->after('recipient_delivery_scheduled_at');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('gift_vouchers', function (Blueprint $table) {
|
||||
$table->dropColumn(['recipient_delivery_scheduled_at', 'recipient_delivery_sent_at']);
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user