engine = 'InnoDB'; $table->increments('id'); $table->integer('user_id')->unsigned()->nullable()->index(); $table->integer('album_id')->unsigned()->nullable()->index(); $table->string('title')->nullable(); $table->text('description')->nullable(); $table->timestamps(); }); } public function down() { Schema::dropIfExists('graker_photoalbums_photos'); } }