mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
23 lines
382 B
PHP
23 lines
382 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class SegmentsTableSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
DB::table('segments')->insert(
|
|
[
|
|
[
|
|
'id' => 1,
|
|
'company_module_id' => 1,
|
|
'name' => 'Default Segment',
|
|
]
|
|
]
|
|
);
|
|
}
|
|
}
|