id(); $table->string('guild_id')->unique(); $table->string('name'); $table->string('icon_hash'); $table->string('locale'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('discord_guilds'); } };