increments('id'); $table->integer('user_id')->nullable()->index(); $table->integer('team_id')->nullable()->index(); $table->string('provider_id'); $table->decimal('total')->nullable(); $table->decimal('tax')->nullable(); $table->string('card_country')->nullable(); $table->string('billing_state')->nullable(); $table->string('billing_zip')->nullable(); $table->string('billing_country')->nullable(); $table->string('vat_id', 50)->nullable(); $table->timestamps(); $table->index('created_at'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('invoices'); } }