bigIncrements('id'); $table->text('token'); $table->text('order'); $table->text('provider'); $table->text('user_id'); $table->text('plan_id'); $table->longText('seller'); $table->longText('client'); $table->longText('bag'); $table->longText('notes')->nullable(); $table->text('total'); $table->text('currency'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('invoices'); } }