engine = 'InnoDB';
$table->integer('id', true);
$table->integer('user_id')->index('user_id_quotation');
$table->date('date');
$table->string('Ref', 192);
$table->integer('client_id')->index('client_id_quotation');
$table->integer('warehouse_id')->index('warehouse_id_quotation');
$table->float('tax_rate', 10, 0)->nullable()->default(0);
$table->float('TaxNet', 10, 0)->nullable()->default(0);
$table->float('discount', 10, 0)->nullable()->default(0);
$table->float('shipping', 10, 0)->nullable()->default(0);
$table->float('GrandTotal', 10, 0);
$table->string('statut', 192);
$table->text('notes')->nullable();
$table->timestamps(6);
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('quotations');
}
}