Merge branch 'origin/production' of https://dev.sismedika.online/tubagus/aso into origin/production

This commit is contained in:
Server D3 Linksehat
2026-02-04 14:40:21 +07:00
13 changed files with 1269 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('navigations', function (Blueprint $table) {
$table->integer('urutan')
->after('updated_at')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('navigations', function (Blueprint $table) {
$table->dropColumn('urutan');
});
}
};