From 8f97ddf3dd6c367f4b635a87345c3a1b7a26a093 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sat, 3 Feb 2018 16:52:53 +0100 Subject: import from gamessocial --- seeds/GameModeSeeder.php | 61 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 seeds/GameModeSeeder.php (limited to 'seeds/GameModeSeeder.php') diff --git a/seeds/GameModeSeeder.php b/seeds/GameModeSeeder.php new file mode 100644 index 0000000..765b739 --- /dev/null +++ b/seeds/GameModeSeeder.php @@ -0,0 +1,61 @@ +insert([ + 'id' => 1, + 'name' => 'all', + ]); + + DB::table('game_mode')->insert([ + 'id' => 2, + 'name' => 'casual', + ]); + + DB::table('game_mode')->insert([ + 'id' => 3, + 'name' => 'ranked', + ]); + + DB::table('game_mode')->insert([ + 'id' => 4, + 'name' => 'blitz_pvp_ranked', + ]); + + DB::table('game_mode')->insert([ + 'id' => 5, + 'name' => 'casual_aral', + ]); + + DB::table('game_mode')->insert([ + 'id' => 6, + 'name' => 'private', + ]); + + DB::table('game_mode')->insert([ + 'id' => 7, + 'name' => 'private_ranked', + ]); + + DB::table('game_mode')->insert([ + 'id' => 8, + 'name' => 'private_party_blitz_match', + ]); + + DB::table('game_mode')->insert([ + 'id' => 9, + 'name' => 'private_party_aral_match', + ]); + + } +} -- cgit v1.3.1