increments('id'); $table->string('name', 500)->nullable(); $table->text('description')->nullable(); $table->string('image', 500)->nullable(); $table->text('navigation_url')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('brokers'); } }