increments('id'); $table->integer('job_id')->unsigned(); $table->string('name', 60); $table->string('description')->nullable(); $table->unsignedTinyInteger('progress')->default(0); $table->unsignedTinyInteger('position')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('tasks'); } }