From f4bfc7b5f46842618c5ba8741ce6cdd372480af5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?ShaoBo=20Wan=28=E7=84=A1=E5=B0=98=29?= <756684177@qq.com> Date: Tue, 29 Mar 2022 17:15:04 +0800 Subject: [PATCH] Update README.md --- README.md | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 159fc7c..f0037a3 100644 --- a/README.md +++ b/README.md @@ -32,17 +32,19 @@ return $builder->build(); ### 2. 数据库配置 -> 默认策略存储是使用的ThinkORM,如使用[laravel的数据库](https://learnku.com/docs/laravel/8.x/eloquent/9400)的 [illuminate/database](https://github.com/illuminate/database),请按照官方文档按照相应的依赖包:https://www.workerman.net/doc/webman/db/tutorial.html +> 默认策略存储是使用的ThinkORM。 +> 如使用 laravel的数据库 [illuminate/database](https://github.com/illuminate/database),请按照官方文档按照相应的依赖包:https://www.workerman.net/doc/webman/db/tutorial.html -🚀 **(1) 模型配置** +#### 🚀 (1) 模型配置 -- 📒📒📒 使用ThinkORM(默认) - - 修改数据库 `thinkorm.php` 配置 -- 📕📕📕 使用laravel数据库(可选) - - 修改数据库 `database.php` 配置 - - 修改数据库 `permission.php` 的`adapter`适配器为laravel适配器 +📒📒📒 **使用ThinkORM(默认)**📒📒📒 + - 修改数据库 `thinkorm.php` 配置 -🔰 **(2) 创建 `casbin_rule` 数据表** +📕📕📕 **使用laravel数据库(可选)**📕📕📕 + - 修改数据库 `database.php` 配置 + - 修改数据库 `permission.php` 的`adapter`适配器为laravel适配器 + +#### 🔰 (2) 创建 `casbin_rule` 数据表 ```sql CREATE TABLE `casbin_rule` ( `id` BIGINT ( 20 ) UNSIGNED NOT NULL AUTO_INCREMENT, @@ -64,7 +66,7 @@ CREATE TABLE `casbin_rule` ( ) ENGINE = INNODB CHARSET = utf8mb4 COMMENT = '策略规则表'; ``` -📚 **(3) 配置 `config/redis` 配置** +#### 📚 (3) 配置 `config/redis` 配置 ## 重启webman