dbfdg id(); $table->integer('project_id')->default(0); $table->string('title'); $table->string('status'); $table->string('progress')->nullable(); $table->double('cost', 15, 2)->default('0.00'); $table->date('start_date')->nullable(); $table->date('due_date')->nullable(); $table->text('description')->nullable(); $table->timestamps(); }); } } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('milestones'); } }