increments('id'); $table->string('name', 64)->nullable(); $table->string('keywords', 255)->nullable(); $table->integer('order')->nullable(); $table->text('image')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('manufacturers'); } }