Nuke existing server_transfers tables; done trying to be nice to plugin devs

This commit is contained in:
Dane Everitt 2020-10-12 18:42:03 -07:00
parent d795668fc2
commit 2eccfcc1e3
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -13,6 +13,10 @@ class AddTableServerTransfers extends Migration
*/
public function up()
{
// Nuclear approach to whatever plugins are out there and not properly namespacing their own tables
// leading to constant support requests from people...
Schema::dropIfExists('server_transfers');
Schema::create('server_transfers', function (Blueprint $table) {
$table->increments('id');
$table->integer('server_id')->unsigned();