dbfdg bigIncrements('id'); $table->string('bill_id')->default('0'); $table->integer('vender_id'); $table->date('bill_date'); $table->date('due_date'); $table->integer('order_number')->default('0'); $table->integer('status')->default('0'); $table->string('type')->nullable(); $table->string('user_type')->nullable(); $table->integer('shipping_display')->default('1'); $table->date('send_date')->nullable(); $table->integer('discount_apply')->default('0'); $table->integer('category_id'); $table->integer('created_by')->default('0'); $table->timestamps(); } ); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('bills'); } }