increments('id'); $table->integer('user_id')->nullable(); $table->string('user_type', 255)->nullable(); $table->integer('dbupload_id')->nullable(); $table->integer('district')->nullable(); $table->integer('agent_id')->nullable(); $table->string('name', 255)->nullable(); $table->string('phone', 255)->nullable(); $table->string('mobile', 255)->nullable(); $table->string('email', 255)->nullable(); $table->longText('description')->nullable(); $table->string('customer_type', 255)->nullable(); $table->string('category', 255)->nullable(); $table->string('status', 255)->nullable(); $table->string('substatus', 255)->nullable(); $table->tinyInteger('hotcall')->nullable(); $table->string('notes', 255)->nullable(); $table->string('slug', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('calls'); } }