Skip to content

Commit

Permalink
Update user table to start from id 2
Browse files Browse the repository at this point in the history
  • Loading branch information
nanaya committed Jan 29, 2025
1 parent 942f371 commit d78561f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/2015_01_01_133337_base_tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -1135,7 +1135,7 @@ public function up()
});

Schema::create('phpbb_users', function (Blueprint $table) {
$table->mediumIncrements('user_id');
$table->mediumIncrements('user_id')->from(2);
$table->tinyInteger('user_type')->default(0);
$table->mediumInteger('group_id')->unsigned()->default(2);
$table->mediumText('user_permissions');
Expand Down

0 comments on commit d78561f

Please sign in to comment.