Skip to content

Commit 5a1c62a

Browse files
committed
v1.7.4
1 parent 69d69c4 commit 5a1c62a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mastashake08/laravel-openai-api",
33
"description": "Add an OpenAI API and Artisan command easily into your projects. Generate images, or text. Can be integrated with Laravel Sanctum for token based access.",
4-
"version": "1.7.3",
4+
"version": "1.7.4",
55
"keywords": [
66
"mastashake08",
77
"laravel",

database/migrations/add_polymorphic_relations_to_prompts.php.stub

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ return new class extends Migration
1111
*/
1212
public function up(): void
1313
{
14-
Schema::create('prompts', function (Blueprint $table) {
14+
Schema::table('prompts', function (Blueprint $table) {
1515
$table->unsignedBigInteger('user_id')->nullable();
1616
$table->string('user_type')->nullable();
1717
});
@@ -22,6 +22,6 @@ return new class extends Migration
2222
*/
2323
public function down(): void
2424
{
25-
25+
2626
}
2727
};

0 commit comments

Comments
 (0)