upload
This commit is contained in:
30
database/migrations/2026_02_06_160406_change_inf_users.php
Normal file
30
database/migrations/2026_02_06_160406_change_inf_users.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?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) {
|
||||
//
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user