id(); $table->string('name'); $table->char('first'); $table->string('logo'); $table->integer('sort_order'); $table->integer('status'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('manufacturers'); } }