diff --git a/plugins/tps/birzha/components/offerform/second_step_form.htm b/plugins/tps/birzha/components/offerform/second_step_form.htm index a1e6800dd..dfee809d3 100644 --- a/plugins/tps/birzha/components/offerform/second_step_form.htm +++ b/plugins/tps/birzha/components/offerform/second_step_form.htm @@ -29,7 +29,7 @@
-
diff --git a/plugins/tps/birzha/updates/builder_table_update_tps_birzha_products_26.php b/plugins/tps/birzha/updates/builder_table_update_tps_birzha_products_26.php new file mode 100644 index 000000000..2e2f04abd --- /dev/null +++ b/plugins/tps/birzha/updates/builder_table_update_tps_birzha_products_26.php @@ -0,0 +1,23 @@ +decimal('quantity', 10, 2)->nullable()->unsigned(false)->default(null)->change(); + }); + } + + public function down() + { + Schema::table('tps_birzha_products', function($table) + { + $table->integer('quantity')->nullable()->unsigned(false)->default(null)->change(); + }); + } +} diff --git a/plugins/tps/birzha/updates/version.yaml b/plugins/tps/birzha/updates/version.yaml index ebcc8e792..706217233 100644 --- a/plugins/tps/birzha/updates/version.yaml +++ b/plugins/tps/birzha/updates/version.yaml @@ -296,3 +296,6 @@ 1.0.105: - 'Updated table tps_birzha_docs_one' - builder_table_update_tps_birzha_docs_one.php +1.0.106: + - 'Updated table tps_birzha_products' + - builder_table_update_tps_birzha_products_26.php