Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
MetaGer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
55
Issues
55
List
Boards
Labels
Service Desk
Milestones
Merge Requests
7
Merge Requests
7
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
open-source
MetaGer
Commits
c17f6f3b
Commit
c17f6f3b
authored
Apr 30, 2019
by
Dominik Hebeler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
The workers won't fail anymore
parent
7928242b
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
38 deletions
+3
-38
config/queue.php
config/queue.php
+2
-2
database/migrations/2014_10_12_000000_create_users_table.php
database/migrations/2014_10_12_000000_create_users_table.php
+0
-35
database/migrations/2019_02_19_094337_monthlyrequests.php
database/migrations/2019_02_19_094337_monthlyrequests.php
+1
-1
database/migrations/2019_04_30_151742_create_failed_jobs_table.php
...migrations/2019_04_30_151742_create_failed_jobs_table.php
+0
-0
No files found.
config/queue.php
View file @
c17f6f3b
...
...
@@ -51,7 +51,7 @@ return [
'driver'
=>
'redis'
,
'connection'
=>
'default'
,
'queue'
=>
env
(
'REDIS_QUEUE'
,
'default'
),
'retry_after'
=>
9
0
,
'retry_after'
=>
31
0
,
'block_for'
=>
null
,
],
],
...
...
@@ -66,7 +66,7 @@ return [
|
*/
'failed'
=>
[
'database'
=>
'
sqlite
'
,
'database'
=>
'
mysql
'
,
'table'
=>
'failed_jobs'
,
],
];
database/migrations/2014_10_12_000000_create_users_table.php
deleted
100644 → 0
View file @
7928242b
<?php
use
Illuminate\Support\Facades\Schema
;
use
Illuminate\Database\Schema\Blueprint
;
use
Illuminate\Database\Migrations\Migration
;
class
CreateUsersTable
extends
Migration
{
/**
* Run the migrations.
*
* @return void
*/
public
function
up
()
{
Schema
::
create
(
'users'
,
function
(
Blueprint
$table
)
{
$table
->
increments
(
'id'
);
$table
->
string
(
'name'
);
$table
->
string
(
'email'
)
->
unique
();
$table
->
string
(
'password'
);
$table
->
rememberToken
();
$table
->
timestamps
();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public
function
down
()
{
Schema
::
drop
(
'users'
);
}
}
database/migrations/2019_02_19_094337_monthlyrequests.php
View file @
c17f6f3b
...
...
@@ -28,6 +28,6 @@ class Monthlyrequests extends Migration
*/
public
function
down
()
{
Schema
::
drop
(
'
sponsorenlink
s'
);
Schema
::
drop
(
'
monthlyrequest
s'
);
}
}
database/migrations/201
8_02_22_122047
_create_failed_jobs_table.php
→
database/migrations/201
9_04_30_151742
_create_failed_jobs_table.php
View file @
c17f6f3b
File moved
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