diff --git a/database/migrations/2026_02_15_220000_add_gcs_path_to_video_generations_table.php b/database/migrations/2026_02_15_220000_add_gcs_path_to_video_generations_table.php new file mode 100644 index 0000000..1d4e977 --- /dev/null +++ b/database/migrations/2026_02_15_220000_add_gcs_path_to_video_generations_table.php @@ -0,0 +1,22 @@ +string('gcs_path', 500)->nullable()->after('output_path'); + }); + } + + public function down(): void + { + Schema::table('video_generations', function (Blueprint $table) { + $table->dropColumn('gcs_path'); + }); + } +};