Browse Source

统一配置文件名前缀为config

visuddhinanda 4 years ago
parent
commit
779af66810
3 changed files with 2 additions and 2 deletions
  1. 0 0
      public/app/config.dir.php
  2. 2 2
      public/app/config.sample.php
  3. 0 0
      public/app/config.table.php

+ 0 - 0
public/app/dir.php → public/app/config.dir.php


+ 2 - 2
public/app/config.sample.php

@@ -1,6 +1,6 @@
 <?php 
 #目录设置,不能更改
-require_once __DIR__."/dir.php";
+require_once __DIR__."/config.dir.php";
 
 #域名设置
 define("WWW_DOMAIN_PROTOCOL","https");
@@ -53,7 +53,7 @@ define("SnowFlake",[
 数据表
 */
 #表设置,此行不能更改
-require_once __DIR__."/table.php";
+require_once __DIR__."/config.table.php";
 
 #表名设置,此行不能更改
 require_once __DIR__."/config.migrate.php";

+ 0 - 0
public/app/table.php → public/app/config.table.php