Revert "Finadev (pull request #122)"

This commit is contained in:
dev_kopkb
2024-02-14 13:09:00 +00:00
parent c2ab75467a
commit 89c339ea1f
7 changed files with 93 additions and 152 deletions
@@ -1,34 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddGroupIdToUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('users', function (Blueprint $table) {
//
$table->integer('group_id');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('users', function (Blueprint $table) {
//
$table->dropColumn(['group_id']);
});
}
}