Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117747564
2019_09_24_082203_create_failed_jobs_table.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
742 B
Referenced Files
None
Subscribers
None
2019_09_24_082203_create_failed_jobs_table.php
View Options
<?php
use
Illuminate\Database\Migrations\Migration
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Support\Facades\Schema
;
class
CreateFailedJobsTable
extends
Migration
{
/**
* Run the migrations.
*/
public
function
up
()
{
Schema
::
create
(
'failed_jobs'
,
static
function
(
Blueprint
$table
)
{
$table
->
bigIncrements
(
'id'
);
$table
->
text
(
'connection'
);
$table
->
text
(
'queue'
);
$table
->
longText
(
'payload'
);
$table
->
longText
(
'exception'
);
$table
->
timestamp
(
'failed_at'
)->
useCurrent
();
});
}
/**
* Reverse the migrations.
*/
public
function
down
()
{
Schema
::
dropIfExists
(
'failed_jobs'
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Apr 4, 12:26 AM (4 w, 8 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18821686
Default Alt Text
2019_09_24_082203_create_failed_jobs_table.php (742 B)
Attached To
Mode
rK kolab
Attached
Detach File
Event Timeline