increments('id'); $table->integer('user_id')->nullable(); $table->string('filename'); $table->integer('asset_id'); $table->string('filenotes')->nullable(); $table->timestamps(); $table->softDeletes(); $table->engine = 'InnoDB'; }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('asset_uploads'); } }