
In order to migrate IDP from LV 4.x to latest LV version, following task were performed: * Updated namespace to be complain with PSR-4 * General Refactoring: moved all DB access code from services to repositories. * Migration to LV 5.X: these migration guides were applied - https://laravel.com/docs/5.3/upgrade#upgrade-5.0 - https://laravel.com/docs/5.3/upgrade#upgrade-5.1.0 - https://laravel.com/docs/5.3/upgrade#upgrade-5.2.0 * Improved caching: added repositories decorators in order to add REDIS cache to queries, entities Change-Id: I8edf9f5fce6585129701c88bb88332f242307534
33 lines
822 B
PHP
33 lines
822 B
PHP
<?php
|
|
use Illuminate\Database\Seeder;
|
|
/**
|
|
* Class DatabaseSeeder
|
|
*/
|
|
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_client_api_scope')->delete();
|
|
DB::table('oauth2_api_scope')->delete();
|
|
DB::table('oauth2_api_endpoint')->delete();
|
|
DB::table('oauth2_api')->delete();
|
|
DB::table('oauth2_resource_server')->delete();
|
|
|
|
$this->call('ResourceServerSeeder');
|
|
$this->call('ApiSeeder');
|
|
$this->call('ApiScopeSeeder');
|
|
$this->call('ApiEndpointSeeder');
|
|
}
|
|
}
|