valor de compra

This commit is contained in:
Felipe
2023-10-09 10:29:05 -05:00
parent eaa4d812c6
commit c262916aae
3 changed files with 946 additions and 753 deletions
@@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('promociones', function (Blueprint $table) {
$table->string('precio_compra')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('promociones', function (Blueprint $table) {
//
});
}
};