id(); $table->string('name', 150); $table->text('description_upright'); $table->text('description_reversed'); $table->json('symbolism')->nullable(); $table->string('image_url', 255)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('cards'); } };