increments('id'); $table->integer('cid')->nullable(); $table->string('cons_no', 20)->nullable(); $table->string('current_city', 100)->nullable(); $table->string('status', 30)->nullable(); $table->string('comments', 255)->nullable(); $table->dateTime('bk_time')->nullable(); $table->package::package.fieldtype.KEY('PRIMARY')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('tbl_courier_tracks'); } }