atualizacao
This commit is contained in:
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
// apagar tabelas antigas
|
||||
Schema::dropIfExists('model_has_permissions');
|
||||
Schema::dropIfExists('model_has_roles');
|
||||
Schema::dropIfExists('role_has_permissions');
|
||||
Schema::dropIfExists('permissions');
|
||||
Schema::dropIfExists('roles');
|
||||
|
||||
Schema::dropIfExists('alunos');
|
||||
Schema::dropIfExists('turmas');
|
||||
Schema::dropIfExists('users');
|
||||
Schema::dropIfExists('escolas');
|
||||
|
||||
// escolas
|
||||
Schema::create('escolas', function (Blueprint $table) {
|
||||
|
||||
$table->id();
|
||||
|
||||
$table->string('cnpj', 18)->unique();
|
||||
|
||||
$table->string('nome');
|
||||
|
||||
$table->string('endereco')->nullable();
|
||||
|
||||
$table->timestamps();
|
||||
|
||||
});
|
||||
|
||||
// users
|
||||
Schema::create('users', function (Blueprint $table) {
|
||||
|
||||
$table->id();
|
||||
|
||||
$table->foreignId('id_escola')
|
||||
->nullable()
|
||||
->constrained('escolas')
|
||||
->nullOnDelete();
|
||||
|
||||
$table->string('name');
|
||||
|
||||
$table->string('email')->unique();
|
||||
|
||||
$table->string('password');
|
||||
|
||||
$table->boolean('is_super_admin')->default(false);
|
||||
|
||||
$table->rememberToken();
|
||||
|
||||
$table->timestamps();
|
||||
|
||||
});
|
||||
|
||||
// turmas
|
||||
Schema::create('turmas', function (Blueprint $table) {
|
||||
|
||||
$table->id();
|
||||
|
||||
$table->foreignId('id_escola')
|
||||
->constrained('escolas')
|
||||
->cascadeOnDelete();
|
||||
|
||||
$table->string('nome');
|
||||
|
||||
$table->text('descricao')->nullable();
|
||||
|
||||
$table->timestamps();
|
||||
|
||||
});
|
||||
|
||||
// alunos
|
||||
Schema::create('alunos', function (Blueprint $table) {
|
||||
|
||||
$table->id();
|
||||
|
||||
$table->foreignId('id_escola')
|
||||
->constrained('escolas')
|
||||
->cascadeOnDelete();
|
||||
|
||||
$table->foreignId('id_turma')
|
||||
->constrained('turmas')
|
||||
->cascadeOnDelete();
|
||||
|
||||
$table->string('nome');
|
||||
|
||||
$table->string('cpf', 14)->nullable();
|
||||
|
||||
$table->date('data_nascimento')->nullable();
|
||||
|
||||
$table->date('data_inscricao')->nullable();
|
||||
|
||||
$table->date('data_encerramento')->nullable();
|
||||
|
||||
$table->string('endereco')->nullable();
|
||||
|
||||
$table->timestamps();
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('alunos');
|
||||
Schema::dropIfExists('turmas');
|
||||
Schema::dropIfExists('users');
|
||||
Schema::dropIfExists('escolas');
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,207 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
$teams = config('permission.teams');
|
||||
$tableNames = config('permission.table_names');
|
||||
$columnNames = config('permission.column_names');
|
||||
$pivotRole = $columnNames['role_pivot_key'] ?? 'role_id';
|
||||
$pivotPermission = $columnNames['permission_pivot_key'] ?? 'permission_id';
|
||||
$teamKey = $columnNames['team_foreign_key'];
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| PERMISSIONS
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
Schema::create($tableNames['permissions'], function (Blueprint $table) {
|
||||
|
||||
$table->id();
|
||||
$table->string('name');
|
||||
$table->string('guard_name');
|
||||
$table->timestamps();
|
||||
|
||||
$table->unique(['name', 'guard_name']);
|
||||
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| ROLES
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
Schema::create($tableNames['roles'], function (Blueprint $table) use ($teams, $teamKey) {
|
||||
|
||||
$table->id();
|
||||
|
||||
if ($teams) {
|
||||
|
||||
$table->unsignedBigInteger($teamKey)
|
||||
->nullable();
|
||||
|
||||
$table->index($teamKey);
|
||||
|
||||
}
|
||||
|
||||
$table->string('name');
|
||||
|
||||
$table->string('guard_name');
|
||||
|
||||
$table->timestamps();
|
||||
|
||||
if ($teams) {
|
||||
|
||||
$table->unique([$teamKey, 'name', 'guard_name']);
|
||||
|
||||
} else {
|
||||
|
||||
$table->unique(['name', 'guard_name']);
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| MODEL HAS PERMISSIONS
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
Schema::create($tableNames['model_has_permissions'], function (Blueprint $table)
|
||||
use ($tableNames, $columnNames, $pivotPermission, $teams, $teamKey)
|
||||
{
|
||||
|
||||
$table->unsignedBigInteger($pivotPermission);
|
||||
|
||||
$table->string('model_type');
|
||||
|
||||
$table->unsignedBigInteger($columnNames['model_morph_key']);
|
||||
|
||||
if ($teams) {
|
||||
|
||||
$table->unsignedBigInteger($teamKey)
|
||||
->nullable();
|
||||
|
||||
$table->index($teamKey);
|
||||
|
||||
}
|
||||
|
||||
$table->foreign($pivotPermission)
|
||||
->references('id')
|
||||
->on($tableNames['permissions'])
|
||||
->cascadeOnDelete();
|
||||
|
||||
// primary SEM team_key
|
||||
$table->primary([
|
||||
$pivotPermission,
|
||||
$columnNames['model_morph_key'],
|
||||
'model_type'
|
||||
]);
|
||||
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| MODEL HAS ROLES
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
Schema::create($tableNames['model_has_roles'], function (Blueprint $table)
|
||||
use ($tableNames, $columnNames, $pivotRole, $teams, $teamKey)
|
||||
{
|
||||
|
||||
$table->unsignedBigInteger($pivotRole);
|
||||
|
||||
$table->string('model_type');
|
||||
|
||||
$table->unsignedBigInteger($columnNames['model_morph_key']);
|
||||
|
||||
if ($teams) {
|
||||
|
||||
$table->unsignedBigInteger($teamKey)
|
||||
->nullable();
|
||||
|
||||
$table->index($teamKey);
|
||||
|
||||
}
|
||||
|
||||
$table->foreign($pivotRole)
|
||||
->references('id')
|
||||
->on($tableNames['roles'])
|
||||
->cascadeOnDelete();
|
||||
|
||||
// primary SEM team_key
|
||||
$table->primary([
|
||||
$pivotRole,
|
||||
$columnNames['model_morph_key'],
|
||||
'model_type'
|
||||
]);
|
||||
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| ROLE HAS PERMISSIONS
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
Schema::create($tableNames['role_has_permissions'], function (Blueprint $table)
|
||||
use ($tableNames, $pivotRole, $pivotPermission)
|
||||
{
|
||||
|
||||
$table->unsignedBigInteger($pivotPermission);
|
||||
|
||||
$table->unsignedBigInteger($pivotRole);
|
||||
|
||||
$table->foreign($pivotPermission)
|
||||
->references('id')
|
||||
->on($tableNames['permissions'])
|
||||
->cascadeOnDelete();
|
||||
|
||||
$table->foreign($pivotRole)
|
||||
->references('id')
|
||||
->on($tableNames['roles'])
|
||||
->cascadeOnDelete();
|
||||
|
||||
$table->primary([
|
||||
$pivotPermission,
|
||||
$pivotRole
|
||||
]);
|
||||
|
||||
});
|
||||
|
||||
|
||||
app('cache')
|
||||
->store(config('permission.cache.store') != 'default'
|
||||
? config('permission.cache.store')
|
||||
: null)
|
||||
->forget(config('permission.cache.key'));
|
||||
|
||||
}
|
||||
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
|
||||
$tableNames = config('permission.table_names');
|
||||
|
||||
Schema::dropIfExists($tableNames['role_has_permissions']);
|
||||
Schema::dropIfExists($tableNames['model_has_roles']);
|
||||
Schema::dropIfExists($tableNames['model_has_permissions']);
|
||||
Schema::dropIfExists($tableNames['roles']);
|
||||
Schema::dropIfExists($tableNames['permissions']);
|
||||
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,37 @@
|
||||
<?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::create('user_escolas', function (Blueprint $table) {
|
||||
|
||||
$table->id();
|
||||
|
||||
$table->foreignId('user_id')
|
||||
->constrained()
|
||||
->cascadeOnDelete();
|
||||
|
||||
$table->foreignId('escola_id')
|
||||
->constrained()
|
||||
->cascadeOnDelete();
|
||||
|
||||
$table->timestamps();
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('user_escolas');
|
||||
}
|
||||
};
|
||||
@@ -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->dropConstrainedForeignId('id_escola');
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
//
|
||||
});
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,31 @@
|
||||
<?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->foreignId('current_escola_id')
|
||||
->nullable()
|
||||
->constrained('escolas');
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('users', function (Blueprint $table) {
|
||||
//
|
||||
});
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,183 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| APAGAR TODAS AS TABELAS
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
Schema::disableForeignKeyConstraints();
|
||||
|
||||
Schema::dropIfExists('alunos');
|
||||
Schema::dropIfExists('turmas');
|
||||
Schema::dropIfExists('user_escolas');
|
||||
Schema::dropIfExists('escolas');
|
||||
Schema::dropIfExists('users');
|
||||
|
||||
Schema::enableForeignKeyConstraints();
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| CRIAR TABELA ESCOLAS
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
Schema::create('escolas', function (Blueprint $table) {
|
||||
|
||||
$table->id();
|
||||
|
||||
$table->string('cnpj')->unique();
|
||||
|
||||
$table->string('nome');
|
||||
|
||||
$table->json('endereco')->nullable();
|
||||
|
||||
$table->timestamps();
|
||||
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| CRIAR USERS
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
Schema::create('users', function (Blueprint $table) {
|
||||
|
||||
$table->id();
|
||||
|
||||
$table->string('name');
|
||||
|
||||
$table->string('email')->unique();
|
||||
|
||||
$table->string('password');
|
||||
|
||||
$table->boolean('is_super_admin')
|
||||
->default(false);
|
||||
|
||||
$table->foreignId('current_escola_id')
|
||||
->nullable()
|
||||
->constrained('escolas')
|
||||
->nullOnDelete();
|
||||
|
||||
$table->rememberToken();
|
||||
|
||||
$table->timestamps();
|
||||
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| TABELA PIVOT USER_ESCOLAS
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
Schema::create('user_escolas', function (Blueprint $table) {
|
||||
|
||||
$table->id();
|
||||
|
||||
$table->foreignId('user_id')
|
||||
->constrained()
|
||||
->cascadeOnDelete();
|
||||
|
||||
$table->foreignId('escola_id')
|
||||
->constrained()
|
||||
->cascadeOnDelete();
|
||||
|
||||
$table->timestamps();
|
||||
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| TABELA TURMAS
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
Schema::create('turmas', function (Blueprint $table) {
|
||||
|
||||
$table->id();
|
||||
|
||||
$table->foreignId('id_escola')
|
||||
->constrained('escolas')
|
||||
->cascadeOnDelete();
|
||||
|
||||
$table->string('nome');
|
||||
|
||||
$table->text('descricao')
|
||||
->nullable();
|
||||
|
||||
$table->timestamps();
|
||||
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| TABELA ALUNOS
|
||||
|--------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
Schema::create('alunos', function (Blueprint $table) {
|
||||
|
||||
$table->id();
|
||||
|
||||
$table->foreignId('id_escola')
|
||||
->constrained('escolas')
|
||||
->cascadeOnDelete();
|
||||
|
||||
$table->foreignId('id_turma')
|
||||
->constrained('turmas')
|
||||
->cascadeOnDelete();
|
||||
|
||||
$table->string('nome');
|
||||
|
||||
$table->string('cpf')
|
||||
->nullable();
|
||||
|
||||
$table->date('data_nascimento')
|
||||
->nullable();
|
||||
|
||||
$table->date('data_inscricao')
|
||||
->nullable();
|
||||
|
||||
$table->date('data_encerramento')
|
||||
->nullable();
|
||||
|
||||
$table->json('endereco')
|
||||
->nullable();
|
||||
|
||||
$table->timestamps();
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
|
||||
Schema::disableForeignKeyConstraints();
|
||||
|
||||
Schema::dropIfExists('alunos');
|
||||
Schema::dropIfExists('turmas');
|
||||
Schema::dropIfExists('user_escolas');
|
||||
Schema::dropIfExists('users');
|
||||
Schema::dropIfExists('escolas');
|
||||
|
||||
Schema::enableForeignKeyConstraints();
|
||||
|
||||
}
|
||||
};
|
||||
28
database/migrations/2026_02_18_141220_add_wpp_turmas.php
Normal file
28
database/migrations/2026_02_18_141220_add_wpp_turmas.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?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('turmas', function (Blueprint $table) {
|
||||
$table->string('id_whatsapp')->unique()->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('turmas', function (Blueprint $table) {
|
||||
//
|
||||
});
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,29 @@
|
||||
<?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::create('configs', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('nome')->unique();
|
||||
$table->string('valor')->unique();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('configs');
|
||||
}
|
||||
};
|
||||
@@ -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 {
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('alunos', function (Blueprint $table) {
|
||||
|
||||
$table->foreignId('user_id')
|
||||
->nullable()
|
||||
->after('id_turma')
|
||||
->constrained('users')
|
||||
->nullOnDelete();
|
||||
|
||||
$table->foreignId('responsavel_user_id')
|
||||
->nullable()
|
||||
->after('user_id')
|
||||
->constrained('users')
|
||||
->nullOnDelete();
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('alunos', function (Blueprint $table) {
|
||||
$table->dropConstrainedForeignId('responsavel_user_id');
|
||||
$table->dropConstrainedForeignId('user_id');
|
||||
});
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration {
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('aluno_responsaveis', function (Blueprint $table) {
|
||||
$table->id();
|
||||
|
||||
$table->foreignId('aluno_id')
|
||||
->constrained('alunos')
|
||||
->cascadeOnDelete();
|
||||
|
||||
$table->foreignId('user_id') // responsável (users)
|
||||
->constrained('users')
|
||||
->cascadeOnDelete();
|
||||
|
||||
$table->timestamps();
|
||||
|
||||
// impede duplicar o mesmo responsável no mesmo aluno
|
||||
$table->unique(['aluno_id', 'user_id']);
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('aluno_responsaveis');
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,28 @@
|
||||
<?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('alunos', function (Blueprint $table) {
|
||||
$table->dropConstrainedForeignId('responsavel_user_id');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('alunos', function (Blueprint $table) {
|
||||
//
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user