diff --git a/database/migrations/2021_08_04_095125_create_groups_table.php b/database/migrations/2021_08_04_095125_create_groups_table.php index 0af73391c..29c63f73e 100644 --- a/database/migrations/2021_08_04_095125_create_groups_table.php +++ b/database/migrations/2021_08_04_095125_create_groups_table.php @@ -28,10 +28,6 @@ class CreateGroupsTable extends Migration $table->json('metadata')->nullable(); $table->timestamps(); }); - - Schema::table('statuses', function (Blueprint $table) { - $table->bigInteger('group_id')->unsigned()->nullable()->index(); - }); } /** @@ -42,9 +38,5 @@ class CreateGroupsTable extends Migration public function down() { Schema::dropIfExists('groups'); - - Schema::table('statuses', function (Blueprint $table) { - $table->dropColumn('group_id'); - }); } }