diff --git a/database/migrations/2024_11_17_115646_remove_patch_minor_columns_from_sites.php b/database/migrations/2024_11_17_115646_remove_patch_minor_columns_from_sites.php new file mode 100644 index 0000000..7529f8b --- /dev/null +++ b/database/migrations/2024_11_17_115646_remove_patch_minor_columns_from_sites.php @@ -0,0 +1,32 @@ +dropColumn('update_patch'); + $table->dropColumn('update_minor'); + $table->dropColumn('update_major'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('sites', function (Blueprint $table) { + $table->boolean('update_patch'); + $table->boolean('update_minor'); + $table->boolean('update_major'); + }); + } +};