id(); $table->foreignId('account'); $table->string('name'); $table->text('address'); $table->boolean('checked'); $table->string('email'); $table->text('description')->nullable(); $table->text('interest')->nullable(); $table->dateTimeTz('date_of_birth'); $table->json('credit_card'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } };