increments('id'); $table->integer('trans_id'); $table->string('transref', 50); $table->text('json_request'); $table->text('xml'); $table->string('uri', 100); $table->string('wsdl', 100); $table->string('method', 30); $table->integer('sendcount')->unsigned()->default(0); $table->enum('sendstatus', ['0', '1', '2'])->default('1'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('wsrequests'); } }