id(); $table->integer('mode')->default(0); $table->string('name'); $table->string('torrent_field'); $table->string('image')->nullable(true); $table->string('class_name')->nullable(true); $table->integer('priority')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('taxonomies'); } };