Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Tinywan authored Mar 29, 2022
1 parent 68368e7 commit f4bfc7b
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -64,7 +66,7 @@ CREATE TABLE `casbin_rule` (
) ENGINE = INNODB CHARSET = utf8mb4 COMMENT = '策略规则表';
```

📚 **(3) 配置 `config/redis` 配置**
#### 📚 (3) 配置 `config/redis` 配置

## 重启webman

Expand Down

0 comments on commit f4bfc7b

Please sign in to comment.