62 lines
2.4 KiB
PHP
62 lines
2.4 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::create('transactions', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->integer('business_id')->unsigned();
|
|
$table->foreign('business_id')->references('id')->on('business')->onDelete('cascade');
|
|
$table->enum('type', ['purchase', 'sell']);
|
|
$table->enum('status', ['received', 'pending', 'ordered', 'draft', 'final']);
|
|
$table->enum('payment_status', ['paid', 'due']);
|
|
$table->integer('contact_id')->unsigned();
|
|
$table->foreign('contact_id')->references('id')->on('contacts')->onDelete('cascade');
|
|
$table->string('invoice_no')->nullable();
|
|
$table->string('ref_no')->nullable();
|
|
$table->dateTime('transaction_date');
|
|
$table->decimal('total_before_tax', 22, 4)->default(0)->comment('Total before the purchase/invoice tax, this includeds the indivisual product tax');
|
|
$table->integer('tax_id')->unsigned()->nullable();
|
|
$table->foreign('tax_id')->references('id')->on('tax_rates')->onDelete('cascade');
|
|
$table->decimal('tax_amount', 22, 4)->default(0);
|
|
$table->enum('discount_type', ['fixed', 'percentage'])->nullable();
|
|
$table->decimal('discount_amount', 22, 4)->default(0);
|
|
$table->string('shipping_details')->nullable();
|
|
$table->decimal('shipping_charges', 22, 4)->default(0);
|
|
$table->text('additional_notes')->nullable();
|
|
$table->text('staff_note')->nullable();
|
|
$table->decimal('final_total', 22, 4)->default(0);
|
|
$table->integer('created_by')->unsigned();
|
|
$table->foreign('created_by')->references('id')->on('users')->onDelete('cascade');
|
|
$table->timestamps();
|
|
|
|
//Indexing
|
|
$table->index('business_id');
|
|
$table->index('type');
|
|
$table->index('contact_id');
|
|
$table->index('transaction_date');
|
|
$table->index('created_by');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('transactions');
|
|
}
|
|
};
|