We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a92ab1c commit bb506bbCopy full SHA for bb506bb
laravel/documentation/changes.md
@@ -53,6 +53,7 @@
53
- Fixed bug present when using Eloquent models with Twig.
54
- Allow multiple views to be registered for a single composer.
55
- Added `Request::set_env` method.
56
+- `Schema::drop` now accepts `$connection` as second parameter.
57
58
<a name="upgrade-3.2"></a>
59
## Upgrading From 3.1
laravel/documentation/database/schema.md
@@ -37,6 +37,10 @@ Let's go over this example. The **create** method tells the Schema builder that
37
38
Schema::drop('users');
39
40
+#### Dropping a table from a given database connection:
41
+
42
+ Schema::drop('users', 'connection_name');
43
44
Sometimes you may need to specify the database connection on which the schema operation should be performed.
45
46
#### Specifying the connection to run the operation on:
0 commit comments