id(); $table->string('name'); $table->string('email')->unique(); $table->string('password'); $table->foreignId('associate_category_id'); $table->foreignId('associate_nature_id'); $table->foreignId('associate_type_id'); $table->string('avatar')->nullable(); $table->date('birthday'); $table->json('document')->nullable(); $table->json('address'); $table->string('discussion'); $table->integer('contribution'); $table->json('profile'); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('associates'); } }