2016-08-31 22:03:37 +02:00
|
|
|
<?php
|
|
|
|
|
2022-11-25 21:29:04 +01:00
|
|
|
use Illuminate\Support\Facades\Schema;
|
2016-08-31 22:03:37 +02:00
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
|
|
|
class AddIpAlias extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
2022-11-25 21:29:04 +01:00
|
|
|
public function up(): void
|
2016-08-31 22:03:37 +02:00
|
|
|
{
|
|
|
|
Schema::table('allocations', function (Blueprint $table) {
|
|
|
|
$table->text('ip_alias')->nullable()->after('ip');
|
|
|
|
});
|
|
|
|
|
|
|
|
$allocations = DB::select('SELECT id, ip FROM allocations');
|
2016-12-07 23:46:38 +01:00
|
|
|
foreach ($allocations as $allocation) {
|
2016-08-31 22:03:37 +02:00
|
|
|
DB::update(
|
|
|
|
'UPDATE allocations SET ip_alias = :ip WHERE id = :id',
|
|
|
|
[
|
|
|
|
'ip' => $allocation->ip,
|
2016-12-07 23:46:38 +01:00
|
|
|
'id' => $allocation->id,
|
2016-08-31 22:03:37 +02:00
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
2022-11-25 21:29:04 +01:00
|
|
|
public function down(): void
|
2016-08-31 22:03:37 +02:00
|
|
|
{
|
|
|
|
Schema::table('allocations', function (Blueprint $table) {
|
|
|
|
$table->dropColumn('ip_alias');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|