diff --git a/database/migrations/2016_09_29_213518_rename_double_insurgency.php b/database/migrations/2016_09_29_213518_rename_double_insurgency.php new file mode 100644 index 000000000..79a11661b --- /dev/null +++ b/database/migrations/2016_09_29_213518_rename_double_insurgency.php @@ -0,0 +1,34 @@ +where('id', 3)->where('name', 'Insurgency')->first(); + if ($model) { + $model->name = 'Team Fortress 2'; + $model->save(); + } + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +}