forked from Alex/Pterodactyl-Panel
30 lines
685 B
PHP
30 lines
685 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class AddServerVariables extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('server_variables', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->mediumInteger('server_id')->unsigned();
|
|
$table->mediumInteger('variable_id')->unsigned();
|
|
$table->string('variable_value');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('server_variables');
|
|
}
|
|
}
|