diff --git a/database/migrations/2020_03_07_212343_remove_text_hash.php b/database/migrations/2020_03_07_213224_remove_text_hash.php similarity index 82% rename from database/migrations/2020_03_07_212343_remove_text_hash.php rename to database/migrations/2020_03_07_213224_remove_text_hash.php index 414e6f48e..02ba87a2e 100644 --- a/database/migrations/2020_03_07_212343_remove_text_hash.php +++ b/database/migrations/2020_03_07_213224_remove_text_hash.php @@ -13,7 +13,7 @@ class RemoveTextHash extends Migration */ public function up() { - Schema::table('release_commments', function (Blueprint $table) { + Schema::table('release_comments', function (Blueprint $table) { $table->dropUnique('ix_release_comments_hash_releases_id'); $table->dropColumn('text_hash'); }); @@ -26,7 +26,7 @@ class RemoveTextHash extends Migration */ public function down() { - Schema::table('release_commments', function (Blueprint $table) { + Schema::table('release_comments', function (Blueprint $table) { $table->string('text_hash', 32)->default(''); $table->unique(['text_hash', 'releases_id'], 'ix_release_comments_hash_releases_id'); });