mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
25 lines
539 B
PHP
25 lines
539 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
use App\Classes\Modules\Segments\DataTransferObjects\SegmentObject;
|
|
use App\Classes\Modules\Segments\Services\CreatesSegment;
|
|
use App\Classes\ValueObjects\Constants\SegmentConstants;
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class SegmentsTableSeeder extends Seeder
|
|
{
|
|
|
|
|
|
/**
|
|
*/
|
|
public function run()
|
|
{
|
|
|
|
DB::table('segments')->insert([
|
|
'name' => 'Standard Segment',
|
|
'type' => SegmentConstants::STANDARD_SEGMENT
|
|
]);
|
|
}
|
|
}
|