Files
cae/database/migrations/2026_02_06_160406_change_inf_users.php
2026-02-12 17:56:16 +00:00

31 lines
838 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('users', function (Blueprint $table) {
$table->integer('id_escola')->nullable()->after('created_at')->change();
$table->string('profile')->nullable()->after('id_escola')->change();
$table->string('cpf')->nullable()->after(column: 'profile')->change();
$table->json('endereco')->nullable()->after('cpf')->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('users', function (Blueprint $table) {
//
});
}
};