id(); $table->string('name'); $table->string('phone')->unique(); $table->dateTime('exp_date'); $table->foreignId('type_member_id')->constrained(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('members'); } };