dbfdg id(); $table->string('project_name'); $table->date('start_date')->nullable(); $table->date('end_date')->nullable(); $table->string('project_image')->nullable(); $table->integer('budget')->nullable(); $table->integer('client_id'); $table->text('description')->nullable(); $table->string('status'); $table->string('estimated_hrs')->nullable(); $table->string('password')->nullable(); $table->text('copylinksetting')->nullable(); $table->text('tags')->nullable(); $table->unsignedBigInteger('created_by'); $table->timestamps(); }); } } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('pojects'); } }