瀏覽代碼

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

- 将表名从 extension_filesystem_file 修改为 filesystem_user_file
- 保持表注释为 文件表
- 维持 InnoDB 引擎和 utf8mb4_general_ci 排序规则
runphp 2 月之前
父節點
當前提交
e2c018066f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      database/migrations/20260108033628_filesystem_user_file.php

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

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