ultimatepos/database/migrations/2018_04_27_132653_quotation_related_change.php

43 lines
1.1 KiB
PHP

<?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('transactions', function (Blueprint $table) {
$table->boolean('is_quotation')->after('status')->default(false);
});
Schema::table('invoice_layouts', function (Blueprint $table) {
$table->string('quotation_heading')->after('invoice_heading_paid')->nullable();
$table->string('quotation_no_prefix')->after('invoice_no_prefix')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('transactions', function (Blueprint $table) {
$table->dropColumn('is_quotation');
});
Schema::table('invoice_layouts', function (Blueprint $table) {
$table->dropColumn('quotation_heading');
$table->dropColumn('quotation_no_prefix');
});
}
};