mirror of
https://gh.wpcy.net/https://github.com/vladaman/freescout-saml2.git
synced 2026-04-17 09:02:20 +08:00
21 lines
351 B
PHP
21 lines
351 B
PHP
<?php
|
|
|
|
namespace Modules\Saml2\Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class SamlDatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
Model::unguard();
|
|
|
|
// $this->call("OthersTableSeeder");
|
|
}
|
|
}
|