the browser-facing portion of osu!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update user table to start from id 2

nanaya d78561f7 942f371c

+1 -1
+1 -1
database/migrations/2015_01_01_133337_base_tables.php
··· 1135 1135 }); 1136 1136 1137 1137 Schema::create('phpbb_users', function (Blueprint $table) { 1138 - $table->mediumIncrements('user_id'); 1138 + $table->mediumIncrements('user_id')->from(2); 1139 1139 $table->tinyInteger('user_type')->default(0); 1140 1140 $table->mediumInteger('group_id')->unsigned()->default(2); 1141 1141 $table->mediumText('user_permissions');