id(); $table->string('title'); $table->text('prompt'); $table->text('description'); $table->string('preview_image'); $table->foreignId('api_provider_id')->constrained(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('styles'); } };