id(); $table->json('to'); $table->string('greeting'); $table->string('status'); $table->timestamps(); }); Schema::create('invoice_positions', function (Blueprint $table) { $table->id(); $table->foreignId('invoice_id'); $table->string('description'); $table->foreignId('member_id'); $table->unsignedBigInteger('price'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('invoice_positions'); Schema::dropIfExists('invoices'); } };