Skip to content

Commit 7555e0d

Browse files
committed
fix migration reversal code
1 parent f4cd9e8 commit 7555e0d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

database/migrations/2025_05_19_142457_add_monthly_user_count_to_wiki_daily_metrics_table.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ public function up(): void
2222
*/
2323
public function down(): void
2424
{
25-
Schema::table('wiki_daily_metric', function (Blueprint $table) {
25+
Schema::table('wiki_daily_metrics', function (Blueprint $table) {
26+
$table->dropColumn('monthly_casual_users');
27+
$table->dropColumn('monthly_active_users');
2628
});
2729
}
2830
};

0 commit comments

Comments
 (0)