2017-03-18 18:09:30 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
2017-04-20 23:26:20 +02:00
|
|
|
class AddScriptsToServiceOptions extends Migration
|
2017-03-18 18:09:30 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::table('service_options', function (Blueprint $table) {
|
|
|
|
$table->text('script_install')->after('startup')->nullable();
|
2017-04-20 23:26:20 +02:00
|
|
|
$table->boolean('script_is_privileged')->default(true)->after('startup');
|
2017-04-23 22:29:54 +02:00
|
|
|
$table->string('script_entry')->default('ash')->after('startup');
|
|
|
|
$table->string('script_container')->default('alpine:3.4')->after('startup');
|
2017-03-18 18:09:30 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
Schema::table('service_options', function (Blueprint $table) {
|
|
|
|
$table->dropColumn('script_install');
|
|
|
|
$table->dropColumn('script_is_privileged');
|
2017-04-21 00:52:43 +02:00
|
|
|
$table->dropColumn('script_entry');
|
|
|
|
$table->dropColumn('script_container');
|
2017-03-18 18:09:30 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|