increments('id'); $table->string('name', 30)->nullable(); $table->string('key', 10)->nullable(); $table->integer('level')->nullable(); $table->enum('type', [])->nullable(); $table->enum('status', ['','Active','Inactive'])->nullable(); $table->text('description')->nullable(); $table->text('settings')->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('litepie_team_teams'); } }