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