Skip to content

Commit f556e4a

Browse files
committed
Fixed bug in install-migration (fixes #6)
1 parent 955fe2d commit f556e4a

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release Notes for chatgpt-integration
22

3+
## 4.0.7 - 2025-02-26
4+
5+
### Fixed
6+
- Error for new plugin installations (Issue #6)
7+
38
## 4.0.6 - 2024-04-15
49

510
### Added

src/migrations/Install.php

+3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ protected function createTables(): void
4040
'id' => $this->primaryKey(),
4141
'label' => $this->string()->notNull(),
4242
'promptTemplate' => $this->string()->notNull(),
43+
'temperature' => $this->float()->defaultValue(1),
44+
'frequencyPenalty' => $this->float()->defaultValue(0),
45+
'presencePenalty' => $this->float()->defaultValue(0),
4346
'enabled' => $this->boolean()->notNull()->defaultValue(true),
4447
'dateCreated' => $this->dateTime()->notNull(),
4548
'dateUpdated' => $this->dateTime()->notNull(),

0 commit comments

Comments
 (0)