Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Walter Felipe
submeta
Commits
6921e3de
"resources/views/vscode:/vscode.git/clone" did not exist on "512f16ba406a2e3ddb24c39fde6ee4a84b424998"
Commit
6921e3de
authored
Apr 09, 2022
by
Guilherme Silva
Browse files
Criação de Cota para recem doutores
parent
2ddc75b9
Changes
2
Hide whitespace changes
Inline
Side-by-side
app/Evento.php
View file @
6921e3de
...
@@ -17,7 +17,8 @@ class Evento extends Model
...
@@ -17,7 +17,8 @@ class Evento extends Model
'resultado_final'
,
'resultado_preliminar'
,
'coordenadorId'
,
'resultado_final'
,
'resultado_preliminar'
,
'coordenadorId'
,
'numMaxTrabalhos'
,
'numMaxCoautores'
,
'hasResumo'
,
'criador_id'
,
'numParticipantes'
,
'numMaxTrabalhos'
,
'numMaxCoautores'
,
'hasResumo'
,
'criador_id'
,
'numParticipantes'
,
'dt_inicioRelatorioParcial'
,
'dt_fimRelatorioParcial'
,
'dt_inicioRelatorioFinal'
,
'dt_fimRelatorioFinal'
,
'dt_inicioRelatorioParcial'
,
'dt_fimRelatorioParcial'
,
'dt_inicioRelatorioFinal'
,
'dt_fimRelatorioFinal'
,
'formAvaliacaoExterno'
,
'formAvaliacaoInterno'
'formAvaliacaoExterno'
,
'formAvaliacaoInterno'
,
'cotaDoutor'
];
];
public
function
endereco
(){
public
function
endereco
(){
...
...
database/migrations/2022_04_05_123239_add_cota_doutor_evento.php
0 → 100644
View file @
6921e3de
<?php
use
Illuminate\Database\Migrations\Migration
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Support\Facades\Schema
;
class
AddCotaDoutorEvento
extends
Migration
{
/**
* Run the migrations.
*
* @return void
*/
public
function
up
()
{
Schema
::
table
(
'eventos'
,
function
(
Blueprint
$table
)
{
$table
->
boolean
(
'cotaDoutor'
)
->
default
(
false
);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public
function
down
()
{
Schema
::
table
(
'eventos'
,
function
(
Blueprint
$table
)
{
$table
->
dropColumn
(
'cotaDoutor'
);
});
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment