bigIncrements('id'); $table->unsignedBigInteger('user_id')->index('groups_user_id_foreign'); $table->string('name'); $table->string('description')->nullable(); $table->tinyInteger('invite_only')->default(1); $table->tinyInteger('auto_accept_users')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('groups'); } }