dbfdg id(); $table->string('subject'); $table->integer('ticket_created')->default(0); $table->integer('user')->default(0); $table->string('priority'); $table->date('end_date'); $table->string('ticket_code')->nullable(); $table->string('status')->default(0); $table->string('attachment')->nullable(); $table->integer('created_by'); $table->text('description')->nullable(); $table->timestamps(); } ); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('supports'); } }