id(); $table->foreignId('discord_guild_id')->nullable()->default(null)->constrained(); $table->string('channel_id')->unique(); $table->string('name'); $table->integer('type'); $table->integer('position'); $table->boolean('private'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('discord_channels'); } };