increments('id'); $table->integer('job_proposal_id')->nullable(); $table->integer('user_id')->nullable(); $table->string('job_number', 10)->nullable(); $table->string('funding_year', 10)->nullable(); $table->string('budget', 10)->nullable(); $table->string('user_type', 50)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('assetise_asset_approved_jobs'); } }