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