id(); $table->string('name'); $table->string('internal_name'); $table->integer('size'); $table->string('extension'); $table->morphs('documentable'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('documents'); } }