Skip to content

Commit 8046f7f

Browse files
Merge pull request #4 from karam-mustafa/main
update docs
2 parents 207db21 + 409a311 commit 8046f7f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/delete.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Delete helper
22
-----------
3-
#### drop multi tables
3+
### drop multi tables
44
Suppose you want to drop multiple tables by their names in the database, you can do it with the following implementation.
55
```php
66

@@ -13,7 +13,7 @@ Suppose you want to drop multiple tables by their names in the database, you can
1313
->executeAll();
1414

1515
```
16-
#### truncate multi tables
16+
### truncate multi tables
1717

1818
Suppose you want to truncate multiple tables by their names in the database, you can do it with the following implementation.
1919
```php
@@ -28,7 +28,7 @@ Suppose you want to truncate multiple tables by their names in the database, you
2828

2929
```
3030

31-
#### delete large data
31+
### delete large data
3232
If you have a table that contains a large number of data (maybe millions of records)
3333
and you want to delete everything contained in this table,
3434
if you execute the command with one query,
@@ -52,7 +52,7 @@ so this function divides the large query into more queries with an easy-to-use s
5252
}); // this will implement the delete process only on the result of this callback.
5353
```
5454

55-
#### drop all tables
55+
### drop all tables
5656
If you want to drop all tables from the database.
5757
```php
5858

0 commit comments

Comments
 (0)