mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-25 18:42:31 +01:00
Nuke existing server_transfers tables; done trying to be nice to plugin devs
This commit is contained in:
parent
d795668fc2
commit
2eccfcc1e3
@ -13,6 +13,10 @@ class AddTableServerTransfers extends Migration
|
|||||||
*/
|
*/
|
||||||
public function up()
|
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) {
|
Schema::create('server_transfers', function (Blueprint $table) {
|
||||||
$table->increments('id');
|
$table->increments('id');
|
||||||
$table->integer('server_id')->unsigned();
|
$table->integer('server_id')->unsigned();
|
||||||
|
Loading…
Reference in New Issue
Block a user