mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-03 22:13:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
use Illuminate\Database\Migrations\Migration;
 | 
						|
use Illuminate\Database\Schema\Blueprint;
 | 
						|
use Illuminate\Support\Facades\Schema;
 | 
						|
 | 
						|
class CreateEstimatesTable extends Migration
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Run the migrations.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function up()
 | 
						|
    {
 | 
						|
        Schema::create('estimates', function (Blueprint $table) {
 | 
						|
            $table->increments('id');
 | 
						|
            $table->date('estimate_date');
 | 
						|
            $table->date('expiry_date');
 | 
						|
            $table->string('estimate_number');
 | 
						|
            $table->string('status');
 | 
						|
            $table->string('reference_number')->nullable();
 | 
						|
            $table->string('tax_per_item');
 | 
						|
            $table->string('discount_per_item');
 | 
						|
            $table->string('notes')->nullable();
 | 
						|
            $table->decimal('discount', 15, 2)->nullable();
 | 
						|
            $table->string('discount_type')->nullable();
 | 
						|
            $table->unsignedBigInteger('discount_val')->nullable();
 | 
						|
            $table->unsignedBigInteger('sub_total');
 | 
						|
            $table->unsignedBigInteger('total');
 | 
						|
            $table->unsignedBigInteger('tax');
 | 
						|
            $table->string('unique_hash')->nullable();
 | 
						|
            $table->integer('user_id')->unsigned()->nullable();
 | 
						|
            $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
 | 
						|
            $table->integer('company_id')->unsigned()->nullable();
 | 
						|
            $table->foreign('company_id')->references('id')->on('companies')->onDelete('cascade');
 | 
						|
            $table->timestamps();
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Reverse the migrations.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function down()
 | 
						|
    {
 | 
						|
        Schema::dropIfExists('estimates');
 | 
						|
    }
 | 
						|
}
 |