Files
panel/database/migrations/2017_04_27_145300_AddCopyScriptFromColumn.php
Matthew Penner 8ca098940a chore: update composer dependencies (#5198)
Signed-off-by: Matthew Penner <me@matthewp.io>
2024-10-21 19:18:20 -06:00

32 lines
826 B
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddCopyScriptFromColumn extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('service_options', function (Blueprint $table) {
$table->unsignedInteger('copy_script_from')->nullable()->after('script_container');
$table->foreign('copy_script_from')->references('id')->on('service_options');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('service_options', function (Blueprint $table) {
$table->dropForeign(['copy_script_from']);
$table->dropColumn('copy_script_from');
});
}
}