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
pad-upe
Commits
a7822646
Commit
a7822646
authored
Apr 15, 2023
by
alissonalbuquerque
Browse files
delete migration avaliador_pad_dimensao
parent
a8944434
Changes
1
Hide whitespace changes
Inline
Side-by-side
database/migrations/2023_04_13_062116_alter_avaliador_pad_dimensao_add_timestamp_columns_table.php
deleted
100644 → 0
View file @
a8944434
<?php
use
Illuminate\Database\Migrations\Migration
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Support\Facades\Schema
;
class
AlterAvaliadorPadDimensaoAddTimestampColumnsTable
extends
Migration
{
/**
* Run the migrations.
*
* @return void
*/
public
function
up
()
{
Schema
::
table
(
'avaliador_pad_dimensao'
,
function
(
Blueprint
$table
)
{
$table
->
timestamps
();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public
function
down
()
{
Schema
::
table
(
'avaliador_pad_dimensao'
,
function
(
Blueprint
$table
)
{
$table
->
dropColumn
([
'created_at'
,
'updated_at'
]);
});
}
}
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