increments('id'); $table->unsignedInteger('document_id'); $table->string('name'); $table->string('extension'); $table->decimal('size', 5, 2); $table->text('path'); $table->unsignedInteger('downloads')->default(0); $table->timestamps(); $table->foreign('document_id') ->references('id') ->on('documents') ->onUpdate('cascade') ->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('attachments'); } }