2015-12-08 03:46:46 +00:00
|
|
|
<?php
|
|
|
|
|
2022-11-25 20:29:04 +00:00
|
|
|
use Illuminate\Support\Facades\Schema;
|
2015-12-08 03:46:46 +00:00
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
2016-01-23 20:42:25 +00:00
|
|
|
class AddServices extends Migration
|
2015-12-08 03:46:46 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
2022-11-25 20:29:04 +00:00
|
|
|
public function up(): void
|
2015-12-08 03:46:46 +00:00
|
|
|
{
|
|
|
|
Schema::create('services', function (Blueprint $table) {
|
2016-01-23 20:42:25 +00:00
|
|
|
$table->increments('id');
|
2015-12-08 03:46:46 +00:00
|
|
|
$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();
|
2015-12-08 03:46:46 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
2022-11-25 20:29:04 +00:00
|
|
|
public function down(): void
|
2015-12-08 03:46:46 +00:00
|
|
|
{
|
2016-01-23 20:42:25 +00:00
|
|
|
Schema::dropIfExists('services');
|
2015-12-08 03:46:46 +00:00
|
|
|
}
|
|
|
|
}
|