dbfdg id(); $table->integer('contract_id')->default(0); $table->integer('user_id')->default(0); $table->string('notes')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contract_notes'); } }