21 lines
408 B
PHP
21 lines
408 B
PHP
|
<?php
|
||
|
|
||
|
namespace Database\Seeders;
|
||
|
|
||
|
use Illuminate\Database\Seeder;
|
||
|
|
||
|
class ApplicationPreviewSeeder extends Seeder
|
||
|
{
|
||
|
/**
|
||
|
* Run the database seeds.
|
||
|
*/
|
||
|
public function run(): void
|
||
|
{
|
||
|
// $application_1 = Application::find(1);
|
||
|
// ApplicationPreview::create([
|
||
|
// 'application_id' => $application_1->id,
|
||
|
// 'pull_request_id' => 1
|
||
|
// ]);
|
||
|
}
|
||
|
}
|