mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 05:27:59 +01:00
17 lines
No EOL
197 B
PHP
17 lines
No EOL
197 B
PHP
<?php
|
|
|
|
class DatabaseSeeder extends Seeder {
|
|
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
Eloquent::unguard();
|
|
|
|
// $this->call('UserTableSeeder');
|
|
}
|
|
|
|
} |