dbfdg bigIncrements('id'); $table->unsignedBigInteger('pos_id')->default('0'); $table->unsignedBigInteger('customer_id')->default('0'); $table->integer('warehouse_id')->default('0'); $table->date('pos_date')->nullable(); $table->integer('category_id')->default('0'); $table->integer('status')->default('0'); $table->integer('shipping_display')->default('1'); $table->integer('created_by')->default('0'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('pos'); } }