From 5b2c489f2d3abab7ac5309e933db4e7fb322f243 Mon Sep 17 00:00:00 2001 From: Ale Date: Sun, 12 Nov 2023 11:26:29 -0300 Subject: [PATCH] Columnas a su propia migracion --- ...0_09_23_180334_create_subpedidos_table.php | 2 -- .../2023_11_12_142350_devoluciones_pedido.php | 34 +++++++++++++++++++ 2 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 database/migrations/2023_11_12_142350_devoluciones_pedido.php diff --git a/database/migrations/2020_09_23_180334_create_subpedidos_table.php b/database/migrations/2020_09_23_180334_create_subpedidos_table.php index f116f33..7ef83f3 100644 --- a/database/migrations/2020_09_23_180334_create_subpedidos_table.php +++ b/database/migrations/2020_09_23_180334_create_subpedidos_table.php @@ -18,8 +18,6 @@ class CreateSubpedidosTable extends Migration $table->string('nombre'); $table->foreignId('grupo_de_compra_id'); $table->boolean('aprobado')->default(false); - $table->double('devoluciones_total', 10, 2)->default(0); - $table->string('devoluciones_notas')->default(""); $table->timestamps(); }); diff --git a/database/migrations/2023_11_12_142350_devoluciones_pedido.php b/database/migrations/2023_11_12_142350_devoluciones_pedido.php new file mode 100644 index 0000000..83106da --- /dev/null +++ b/database/migrations/2023_11_12_142350_devoluciones_pedido.php @@ -0,0 +1,34 @@ +double('devoluciones_total', 10, 2)->default(0); + $table->string('devoluciones_notas')->default(""); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('subpedidos', function (Blueprint $table) { + $table->dropColumn('devoluciones_total'); + $table->dropColumn('devoluciones_notas'); + }); + } +}