Skip to content

Commit

Permalink
Merge pull request #11828 from nanaya/user-id-2
Browse files Browse the repository at this point in the history
Update user table to start from id 2
  • Loading branch information
notbakaneko authored Jan 29, 2025
2 parents 942f371 + d78561f commit ae70c33
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 ae70c33

Please sign in to comment.