Skip to content

Commit

Permalink
Merge pull request #29 from outl1ne/update-openai-table-columns
Browse files Browse the repository at this point in the history
unsignedDecimal data type was deleted from Laravel
  • Loading branch information
allantatter authored Mar 28, 2024
2 parents a4f1708 + d58d43a commit 621aee8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ public function up(): void

$table->string('method')->nullable()->index();
$table->string('status')->index();
$table->unsignedDecimal('cost', 16, 8)->nullable();
$table->unsignedDecimal('time_sec', 10, 4)->nullable();
$table->decimal('cost', 16, 8)->nullable();
$table->decimal('time_sec', 10, 4)->nullable();
$table->string('model_requested')->nullable();
$table->string('model_used')->nullable();
$table->jsonb('input')->nullable();
Expand Down

0 comments on commit 621aee8

Please sign in to comment.