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
c964e3c8
"app/git@sites.upe.br:walter.felipe/submeta.git" did not exist on "d6bb053cb4764084757a27c7c2da5663ecf6e488"
Commit
c964e3c8
authored
Oct 01, 2021
by
Guilherme Silva
Browse files
Adicionado campo Observação na tabela de substituicoes
parent
963c7877
Changes
1
Show whitespace changes
Inline
Side-by-side
database/migrations/2021_08_27_145845_create_substituicaos_table.php
View file @
c964e3c8
...
@@ -19,6 +19,7 @@ class CreateSubstituicaosTable extends Migration
...
@@ -19,6 +19,7 @@ class CreateSubstituicaosTable extends Migration
$table
->
enum
(
'tipo'
,
[
'Completa'
,
'TrocarPlano'
,
'ManterPlano'
]);
$table
->
enum
(
'tipo'
,
[
'Completa'
,
'TrocarPlano'
,
'ManterPlano'
]);
$table
->
text
(
'justificativa'
)
->
nullable
();
$table
->
text
(
'justificativa'
)
->
nullable
();
$table
->
string
(
'causa'
)
->
nullable
();
$table
->
string
(
'causa'
)
->
nullable
();
$table
->
text
(
'observacao'
)
->
nullable
();
$table
->
unsignedBigInteger
(
'trabalho_id'
);
$table
->
unsignedBigInteger
(
'trabalho_id'
);
$table
->
unsignedBigInteger
(
'participanteSubstituido_id'
);
$table
->
unsignedBigInteger
(
'participanteSubstituido_id'
);
...
...
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