
[smarcet] - #5035 - Api Endpoints Administration upgrade from laravel 4.0.* to 4.1.* ** please remove your vendor folder and composer.lock and re run php composer.phar install Change-Id: Idc23e084235de4f7258d1e769228e4eba44c69f0
30 lines
682 B
PHP
30 lines
682 B
PHP
<?php
|
|
|
|
class DatabaseSeeder extends Seeder {
|
|
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
Eloquent::unguard();
|
|
|
|
$this->call('OpenIdExtensionsSeeder');
|
|
$this->call('ServerConfigurationSeeder');
|
|
|
|
DB::table('oauth2_api_endpoint_api_scope')->delete();
|
|
DB::table('oauth2_api_endpoint')->delete();
|
|
DB::table('oauth2_api_scope')->delete();
|
|
DB::table('oauth2_api')->delete();
|
|
DB::table('oauth2_resource_server')->delete();
|
|
|
|
$this->call('ResourceServerSeeder');
|
|
$this->call('ApiSeeder');
|
|
$this->call('ApiScopeSeeder');
|
|
$this->call('ApiEndpointSeeder');
|
|
}
|
|
|
|
}
|