Files
lpj/database/migrations/2024_11_08_065701_update_regions_table.php
2025-05-06 15:05:09 +07:00

31 lines
719 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class () extends Migration {
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('regions', function (Blueprint $table) {
$table->string('url')->nullable()->after('name');
$table->string('name_url')->nullable()->after('url');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('regions', function (Blueprint $table) {
$table->dropColumn('url');
$table->dropColumn('name_url');
});
}
};