misc_pterodactyl-panel/database/migrations/2016_01_23_202943_add_services.php

32 lines
686 B
PHP
Raw Normal View History

<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
2016-01-23 20:42:25 +00:00
class AddServices extends Migration
{
/**
* Run the migrations.
*/
public function up()
{
Schema::create('services', function (Blueprint $table) {
2016-01-23 20:42:25 +00:00
$table->increments('id');
$table->string('name');
$table->text('description');
2016-01-23 20:42:25 +00:00
$table->string('file');
$table->string('executable');
$table->text('startup');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down()
{
2016-01-23 20:42:25 +00:00
Schema::dropIfExists('services');
}
}