Files
mmc_info/database/seeders/ProjectTableSeeder.php
Александр Бабкин 0b666ae79a Document begin
2022-07-01 12:11:15 +03:00

25 lines
491 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace Database\Seeders;
use Illuminate\Support\Facades\DB;
use Illuminate\Database\Seeder;
class ProjectTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
DB::table('projects')->insert([
'name' => 'Ил-76МД90А',
'description' => 'АОС Ил-76МД90А',
'mmc_path' => '/Docs/Project/643 Россия/IL-76MD-90А_ru/2_MMC',
]);
}
}