increments('id'); $table->string('name'); $table->string('type'); $table->string('sla'); $table->string('manager'); $table->string('ticket_assignment'); $table->string('outgoing_email'); $table->string('template_set'); $table->string('auto_ticket_response'); $table->string('auto_message_response'); $table->string('auto_response_email'); $table->string('recipient'); $table->string('group_access'); $table->string('department_sign'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('department'); } }