increments('id'); $table->integer('user_id')->unsigned(); $table->integer('ticketcategory_id')->unsigned(); $table->string('ticket_id')->unique(); $table->string('title'); $table->string('priority'); $table->text('message'); $table->string('status'); $table->string('server')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('tickets'); } };