increments('id'); $table->string('name', 225)->nullable(); $table->string('code', 100)->nullable(); $table->enum('shipping_company', ['yes','no'])->nullable(); $table->text('slug')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('organizers'); } }