increments('id'); $table->integer('organization_id')->nullable(); $table->string('name', 150)->nullable(); $table->string('slug', 150)->nullable(); $table->string('type', 100)->nullable(); $table->text('description')->nullable(); $table->integer('user_id')->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('bixo_team_teams'); } }