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
abc8c7b3
"database/seeders/DatabaseSeeder.php" did not exist on "646959768eb5d1983af24923ebb79528fa745042"
Commit
abc8c7b3
authored
Nov 12, 2021
by
Guilherme Silva
Browse files
Correção de coluna duplicada
parent
d80f9576
Changes
2
Hide whitespace changes
Inline
Side-by-side
database/migrations/2021_09_14_091507_alter_table_participantes.php
View file @
abc8c7b3
...
...
@@ -17,6 +17,7 @@ class AlterTableParticipantes extends Migration
$table
->
string
(
'anexoTermoCompromisso'
)
->
nullable
();
$table
->
string
(
'anexoComprovanteMatricula'
)
->
nullable
();
$table
->
string
(
'anexoLattes'
)
->
nullable
();
$table
->
string
(
'anexoComprovanteBancario'
)
->
nullable
();
});
}
...
...
@@ -31,6 +32,7 @@ class AlterTableParticipantes extends Migration
$table
->
dropColumn
(
'anexoTermoCompromisso'
);
$table
->
dropColumn
(
'anexoComprovanteMatricula'
);
$table
->
dropColumn
(
'anexoLattes'
);
$table
->
dropColumn
(
'anexoComprovanteBancario'
);
});
}
}
database/migrations/2021_11_12_092745_alter_table_participantes3.php
deleted
100644 → 0
View file @
d80f9576
<?php
use
Illuminate\Database\Migrations\Migration
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Support\Facades\Schema
;
class
AlterTableParticipantes3
extends
Migration
{
/**
* Run the migrations.
*
* @return void
*/
public
function
up
()
{
Schema
::
table
(
'participantes'
,
function
(
Blueprint
$table
)
{
$table
->
string
(
'anexoComprovanteBancario'
)
->
nullable
();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public
function
down
()
{
Schema
::
table
(
'participantes'
,
function
(
Blueprint
$table
)
{
$table
->
dropColumn
(
'anexoComprovanteBancario'
);
});
}
}
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