Forráskód Böngészése

feat: bump panel to 2022.12

Cat 2 éve
szülő
commit
7f1c3191e6

+ 1 - 1
app/predefine.php

@@ -7,4 +7,4 @@ declare(strict_types=1);
  */
 
 define('BASE_PATH', __DIR__ . '/..');
-define('VERSION', '2022.11');
+define('VERSION', '2022.12');

+ 1 - 1
db/migrations/20000101000000_init_database.php.new

@@ -10,7 +10,7 @@ final class InitDatabase extends AbstractMigration
     public function up(): void
     {
         $this->table('user', [ 'id' => false, 'primary_key' => [ 'id' ]])
-            ->addColumn('id', 'integer', [ 'comment' => '用户ID', 'identity' => true, 'signed' => false, 'null' => false ])
+            ->addColumn('id', 'biginteger', [ 'comment' => '用户ID', 'identity' => true, 'signed' => false, 'null' => false ])
             ->addColumn('user_name', 'string', [ 'comment' => '用户名' ])
             ->addColumn('email', 'string', [ 'comment' => 'E-Mail' ])
             ->addIndex([ 'email' ], [ 'unique' => true ])