increments('id'); $table->integer('client_id')->nullable(); $table->text('name')->nullable(); $table->enum('visibility', ['Public','Private'])->nullable(); $table->text('description')->nullable(); $table->dateTime('start_date')->nullable(); $table->dateTime('end_date')->nullable(); $table->time('duration')->nullable(); $table->enum('priority', ['High','Medium','Low'])->nullable(); $table->text('screenshot')->nullable(); $table->text('images')->nullable(); $table->text('files')->nullable(); $table->text('database')->nullable(); $table->text('documents')->nullable(); $table->increments('budget')->nullable(); $table->enum('status', ['New','Open','Suspended','Closed'])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('projects'); } }