increments('id'); $table->string('name', 150)->nullable(); $table->string('position', 100)->nullable(); $table->string('facebook_url', 255)->nullable(); $table->string('linkedin_url', 255)->nullable(); $table->string('twitter_url', 255)->nullable(); $table->enum('profile_type', ['team'=>'Team', 'advisor'=>'advisor'])->nullable(); $table->text('image')->nullable(); $table->enum('status', ['active'=>'Active', 'inactive'=>'Inactive'])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('members'); } }