Skip to content

Commit 2180965

Browse files
committed
update README
1 parent 0e3985b commit 2180965

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,8 +390,14 @@ TRUNCATE TABLE `users`;
390390

391391
This method will be moved to another class
392392
```php
393-
$query->drop('temporary')->go();
393+
$query->drop('temporary')->go(); // $add_exists = true
394394
```
395395
```sql
396396
DROP TABLE IF EXISTS `temporary`;
397397
```
398+
```php
399+
$query->drop('temp', false)->go(); // $add_exists = false
400+
```
401+
```sql
402+
DROP TABLE `temp`;
403+
```

0 commit comments

Comments
 (0)