bigIncrements('id'); $table->string('name')->nullable(); $table->string('university')->nullable(); $table->string('championship')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('members'); } }