diff --git a/database/migrations/2023_09_01_025916_update_location_url_events_table.php b/database/migrations/2023_09_01_025916_update_location_url_events_table.php new file mode 100644 index 0000000..ba13695 --- /dev/null +++ b/database/migrations/2023_09_01_025916_update_location_url_events_table.php @@ -0,0 +1,30 @@ +text('location_url')->change(); + }); + + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('events', function (Blueprint $table) { + $table->string('location_url')->change(); + }); + + } +};