summaryrefslogtreecommitdiff
path: root/seeds/DatabaseSeeder.php
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2018-02-03 16:52:53 +0100
committerschneefux <schneefux+commit@schneefux.xyz>2018-02-03 16:52:53 +0100
commit8f97ddf3dd6c367f4b635a87345c3a1b7a26a093 (patch)
tree24a2e629c470b33760de541e75a9500161dca57d /seeds/DatabaseSeeder.php
downloadmigrations-8f97ddf3dd6c367f4b635a87345c3a1b7a26a093.tar.gz
migrations-8f97ddf3dd6c367f4b635a87345c3a1b7a26a093.zip
import from gamessocial
Diffstat (limited to 'seeds/DatabaseSeeder.php')
-rw-r--r--seeds/DatabaseSeeder.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/seeds/DatabaseSeeder.php b/seeds/DatabaseSeeder.php
new file mode 100644
index 0000000..cb423b2
--- /dev/null
+++ b/seeds/DatabaseSeeder.php
@@ -0,0 +1,27 @@
+<?php
+
+use Illuminate\Database\Seeder;
+
+class DatabaseSeeder extends Seeder
+{
+ /**
+ * Run the database seeds.
+ *
+ * @return void
+ */
+ public function run()
+ {
+ // $this->call(BuildSeeder::class);
+ // $this->call(KeysTableSeeder::class);
+ // $this->call(GameModeSeeder::class);
+ // $this->call(SeriesSeeder::class);
+ // $this->call(RoleSeeder::class);
+ // $this->call(RegionSeeder::class);
+ // $this->call(GamerSeeder::class);
+ // $this->call(ItemsSeeder::class);
+ // $this->call(HeroesSeeder::class);
+ // $this->call(FilterSeeder::class);
+ // $this->call(SkilltierSeeder::class);
+
+ }
+}