dbfdg bigIncrements('id'); $table->string('name'); $table->string('color', 15)->nullable(); $table->integer('created_by')->default(0); $table->integer('order')->default(0);; $table->timestamps(); } ); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('projectstages'); } }