1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-28 04:42:29 +01:00
Pterodactyl-Panel/database/migrations/2016_01_23_202943_add_services.php

36 lines
740 B
PHP
Raw Normal View History

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