increments('id'); $table->string('slug', 255)->nullable(); $table->string('name', 255)->nullable(); $table->string('email', 255)->nullable(); $table->string('department', 255)->nullable(); $table->string('position', 255)->nullable(); $table->text('details')->nullable(); $table->text('image')->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('organizations'); } }