Skip to content

Commit 2eccfcc

Browse files
committed
Nuke existing server_transfers tables; done trying to be nice to plugin devs
1 parent d795668 commit 2eccfcc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

database/migrations/2020_04_04_131016_add_table_server_transfers.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ class AddTableServerTransfers extends Migration
1313
*/
1414
public function up()
1515
{
16+
// Nuclear approach to whatever plugins are out there and not properly namespacing their own tables
17+
// leading to constant support requests from people...
18+
Schema::dropIfExists('server_transfers');
19+
1620
Schema::create('server_transfers', function (Blueprint $table) {
1721
$table->increments('id');
1822
$table->integer('server_id')->unsigned();

0 commit comments

Comments
 (0)