ソースを参照

rename(filesystem): 修改文件表名称

- 将表名从 extension_filesystem_file 修改为 filesystem_user_file
- 保持表注释为 文件表
- 维持 InnoDB 引擎和 utf8mb4_general_ci 排序规则
runphp 2 ヶ月 前
コミット
e2c018066f

+ 1 - 1
database/migrations/20260108033628_filesystem_user_file.php

@@ -19,7 +19,7 @@ final class FilesystemUserFile extends AbstractMigration
      */
     public function change(): void
     {
-        $table = $this->table('extension_filesystem_file', [
+        $table = $this->table('filesystem_user_file', [
             'comment' => '文件表',
             'engine' => 'InnoDB',
             'collation' => 'utf8mb4_general_ci',