mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
Fix table name
This commit is contained in:
+2
-2
@@ -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');
|
||||
});
|
||||
Reference in New Issue
Block a user