diff --git a/database/migrations/2023_05_13_045228_remove_unused_columns_from_notifications_table.php b/database/migrations/2023_05_13_045228_remove_unused_columns_from_notifications_table.php new file mode 100644 index 000000000..1c450f920 --- /dev/null +++ b/database/migrations/2023_05_13_045228_remove_unused_columns_from_notifications_table.php @@ -0,0 +1,31 @@ +dropColumn('message'); + } + + if(Schema::hasColumn('notifications', 'rendered')) { + $table->dropColumn('rendered'); + } + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + } +};