diff --git a/packages/Webkul/Quote/src/Database/Migrations/2026_02_16_222257_change_description_to_text_in_quotes_table.php b/packages/Webkul/Quote/src/Database/Migrations/2026_02_16_222257_change_description_to_text_in_quotes_table.php new file mode 100644 index 0000000000..458fb6346b --- /dev/null +++ b/packages/Webkul/Quote/src/Database/Migrations/2026_02_16_222257_change_description_to_text_in_quotes_table.php @@ -0,0 +1,32 @@ +text('description')->nullable()->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down(): void + { + Schema::table('quotes', function (Blueprint $table) { + $table->string('description')->nullable()->change(); + }); + } +}; \ No newline at end of file