diff --git a/database/migrations/2024_07_10_120617_update_organizer_id_to_text.php b/database/migrations/2024_07_10_120617_update_organizer_id_to_text.php new file mode 100644 index 000000000..3515960fd --- /dev/null +++ b/database/migrations/2024_07_10_120617_update_organizer_id_to_text.php @@ -0,0 +1,29 @@ +char('organizer_id', 36)->change(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('organizers', function (Blueprint $table) { + $table->uuid('organizer_id')->change(); + }); + } +};