increments('id'); $table->string('title', 100)->nullable(); $table->string('status', 30)->nullable(); $table->string('priority', 30)->nullable(); $table->integer('assigned_to')->nullable(); $table->integer('created_by')->nullable(); $table->dateTime('start_date')->nullable(); $table->time('estimate')->nullable(); $table->text('description')->nullable(); $table->text('documents')->nullable(); $table->text('comments')->nullable(); $table->enum('type', ['Yes', 'No'])->nullable(); $table->text('data')->nullable(); $table->integer('subject_id')->nullable(); $table->string('subject_type', 100)->nullable(); $table->string('user_type', 50)->nullable(); $table->string('group_by', 150)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('bixo_schedule_tasks'); } }