mirror of
https://gh.wpcy.net/https://github.com/calebbaker194/Freescout-Twilio.git
synced 2026-04-17 06:42:20 +08:00
21 lines
354 B
PHP
Executable file
21 lines
354 B
PHP
Executable file
<?php
|
|
|
|
namespace Modules\Twilio\Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class TwilioDatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
Model::unguard();
|
|
|
|
// $this->call("OthersTableSeeder");
|
|
}
|
|
}
|