From 710d5f111aa942a7cd5067de184e3a1474810f0d Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Sat, 18 Mar 2017 13:53:22 -0400 Subject: [PATCH] Actually save the changes so we don't end up with duplicates... --- .../migrations/2017_03_10_173607_MigrateToNewServiceSystem.php | 1 + 1 file changed, 1 insertion(+) diff --git a/database/migrations/2017_03_10_173607_MigrateToNewServiceSystem.php b/database/migrations/2017_03_10_173607_MigrateToNewServiceSystem.php index 9f935fff8..ee247ee96 100644 --- a/database/migrations/2017_03_10_173607_MigrateToNewServiceSystem.php +++ b/database/migrations/2017_03_10_173607_MigrateToNewServiceSystem.php @@ -49,6 +49,7 @@ class MigrateToNewServiceSystem extends Migration } elseif ($item->tag === 'srcds' && $item->name === 'Custom Source Engine Game') { $item->tag = 'source'; } + $item->save(); }); }); }