mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-08-19 12:24:01 +00:00
30 lines
867 B
PHP
30 lines
867 B
PHP
<?php
|
|
|
|
namespace Database\Seeders\PlumberService;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Str;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class PlumberServiceContractTemplateObligationContractDependenciesTableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
DB::table('contract_template_obligation_contract_template_dependencies')->insert([
|
|
[
|
|
'id' => 201,
|
|
'user_id' => 3,
|
|
'contract_template_obligation_id' => 202, // plumber hero company rescue princess peach
|
|
'depend_contract_template_id' => 202, // Plumber Mario Service
|
|
'status' => 1,
|
|
'created_at' => date('Y-m-d H:i:s'),
|
|
'updated_at' => date('Y-m-d H:i:s')
|
|
]
|
|
]);
|
|
}
|
|
} |