dbfdg bigIncrements('id'); $table->integer('invoice')->default('0'); $table->integer('customer')->default('0'); $table->decimal('amount', 15, 2)->default('0.00'); $table->date('date'); $table->text('description')->nullable(); $table->timestamps(); } ); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('credit_notes'); } }