File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 53
53
- Fixed bug present when using Eloquent models with Twig.
54
54
- Allow multiple views to be registered for a single composer.
55
55
- Added ` Request::set_env ` method.
56
+ - ` Schema::drop ` now accepts ` $connection ` as second parameter.
56
57
57
58
<a name =" upgrade-3.2 " ></a >
58
59
## Upgrading From 3.1
Original file line number Diff line number Diff line change @@ -37,6 +37,10 @@ Let's go over this example. The **create** method tells the Schema builder that
37
37
38
38
Schema::drop('users');
39
39
40
+ #### Dropping a table from a given database connection:
41
+
42
+ Schema::drop('users', 'connection_name');
43
+
40
44
Sometimes you may need to specify the database connection on which the schema operation should be performed.
41
45
42
46
#### Specifying the connection to run the operation on:
You can’t perform that action at this time.
0 commit comments