fix(items): added unit name after quantity in the pdf templates

This commit is contained in:
Sebastian Cretu
2021-03-03 17:09:05 +01:00
parent 02a2db4417
commit f9d6e8b0cc
5 changed files with 44 additions and 4 deletions

View File

@ -0,0 +1,38 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddUnitNameToPdf extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('invoice_items', function (Blueprint $table) {
$table->string('unit_name')->nullable()->after('quantity');
});
Schema::table('estimate_items', function (Blueprint $table) {
$table->string('unit_name')->nullable()->after('quantity');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('invoice_items', function (Blueprint $table) {
$table->dropColumn('unit_name');
});
Schema::table('estimate_items', function (Blueprint $table) {
$table->dropColumn('unit_name');
});
}
}