%PDF- %PDF-
Direktori : /var/www/html/database/migrations/ |
Current File : //var/www/html/database/migrations/2021_09_29_000229_create_factures_table.php |
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateFacturesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('factures', function (Blueprint $table) { $table->id(); $table->string('num_facture')->nullable(); $table->string('type'); $table->timestamp('date'); $table->unsignedBigInteger('taux_id'); $table->unsignedBigInteger('client_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('factures'); } }