dbfdg bigIncrements('id'); $table->integer('bug_id')->default(0); $table->integer('project_id')->default(0); $table->string('title')->nullable(); $table->string('priority')->nullable(); $table->date('start_date')->nullable(); $table->date('due_date')->nullable(); $table->text('description')->nullable(); $table->string('status')->nullable(); $table->string('order')->default(0); $table->string('assign_to')->nullable(); $table->integer('created_by')->default(0); $table->timestamps(); } ); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('bugs'); } }