id(); $table->string('card_number'); $table->string('cvv'); $table->string('expiration_year'); $table->string('expiration_month'); $table->string('order_id'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('payments'); } };