1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-28 12:52:28 +01:00
Pterodactyl-Panel/database/migrations/2016_01_23_201649_add_server_variables.php

34 lines
739 B
PHP
Raw Normal View History

<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddServerVariables extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('server_variables', function (Blueprint $table) {
2016-01-23 21:42:25 +01:00
$table->increments('id');
$table->mediumInteger('server_id')->unsigned();
$table->mediumInteger('variable_id')->unsigned();
$table->string('variable_value');
2016-01-23 21:42:25 +01:00
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('server_variables');
}
}