increments('id'); $table->integer('user_id')->nullable(); $table->text('user_type')->nullable(); $table->enum('order_status', ['New','Approved','Processing','Completed'])->nullable(); $table->string('subtotal', 100)->nullable(); $table->string('tax', 100)->nullable(); $table->string('total', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('orders'); } }