Files
mmc_info/database/seeders/ProjectTableSeeder.php
Александр Бабкин 97bacd4423 Continue MMC
2022-07-14 11:01:44 +03:00

25 lines
460 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' => '/home/shurick/tmp/mmc',
]);
}
}