diff --git a/database/migrations/2026_02_04_164242_change_event_join_tokens_expiry_columns_to_datetime.php b/database/migrations/2026_02_04_164242_change_event_join_tokens_expiry_columns_to_datetime.php new file mode 100644 index 00000000..190e7b16 --- /dev/null +++ b/database/migrations/2026_02_04_164242_change_event_join_tokens_expiry_columns_to_datetime.php @@ -0,0 +1,30 @@ +dateTime('expires_at')->nullable()->change(); + $table->dateTime('revoked_at')->nullable()->change(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('event_join_tokens', function (Blueprint $table) { + $table->timestamp('expires_at')->nullable()->change(); + $table->timestamp('revoked_at')->nullable()->change(); + }); + } +};