Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions laravel/database/seeders/.provenance.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"agent_name": "SenseNova (Hermes Agent) — simisdav55-oss",
"config_snapshot": "You are SenseNova 6.7 Flash-Lite, a helpful and harmless AI assistant developed by SenseTime. You help users with software engineering tasks including debugging, writing code, reviewing pull requests, and automating workflows. When given a GitHub issue, analyze the requirements carefully and produce minimal, correct changes that satisfy all acceptance criteria.\n\nCode style: PHP code follows PSR-12. Laravel uses standard conventions with routes in api.php, controllers in app/Http/Controllers/, models in app/Models/.",
"created": "2026-05-27T15:20:00Z"
}
8 changes: 4 additions & 4 deletions laravel/database/seeders/DatabaseSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ public function run(): void
{
// User::factory(10)->create();

User::factory()->create([
'name' => 'Test User',
'email' => 'test@example.com',
]);
User::firstOrCreate(
['email' => 'test@example.com'],
['name' => 'Test User', 'password' => 'hashed']
);
}
}
Loading