Merge pull request #1356 from huanghantao/fix-markdown-style

fix: fix code block style
This commit is contained in:
黄朝晖 2020-02-22 17:24:55 +08:00 committed by GitHub
commit 5af92e9de7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -489,7 +489,7 @@ $table->dropForeign('posts_user_id_foreign');
或者传递一个字段数组,让迁移程序按照约定的规则生成名称:
````php
```php
$table->dropForeign(['user_id'']);
```
@ -500,4 +500,4 @@ $table->dropForeign(['user_id'']);
Schema::enableForeignKeyConstraints();
// 禁用外键约束
Schema::disableForeignKeyConstraints();
```
```

View File

@ -489,7 +489,7 @@ $table->dropForeign('posts_user_id_foreign');
或者传递一个字段数组,让迁移程序按照约定的规则生成名称:
````php
```php
$table->dropForeign(['user_id'']);
```
@ -500,4 +500,4 @@ $table->dropForeign(['user_id'']);
Schema::enableForeignKeyConstraints();
// 禁用外键约束
Schema::disableForeignKeyConstraints();
```
```