setup seeder.

This commit is contained in:
Taylor Otwell 2013-02-07 14:51:28 -06:00
parent ce0a7f6545
commit 6c40ce69fb
4 changed files with 18 additions and 0 deletions

View File

@ -167,6 +167,7 @@
'Response' => 'Illuminate\Support\Facades\Response',
'Route' => 'Illuminate\Support\Facades\Route',
'Schema' => 'Illuminate\Support\Facades\Schema',
'Seeder' => 'Illuminate\Database\Seeder',
'Session' => 'Illuminate\Support\Facades\Session',
'URL' => 'Illuminate\Support\Facades\URL',
'Validator' => 'Illuminate\Support\Facades\Validator',

View File

@ -0,0 +1,15 @@
<?php
class DatabaseSeeder extends Seeder {
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
// $this->call('UserTableSeeder');
}
}

View File

@ -15,6 +15,7 @@
app_path().'/controllers',
app_path().'/models',
app_path().'/database/seeds',
));

View File

@ -8,6 +8,7 @@
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php"
]
},