Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
c17f6f3b
Commit
c17f6f3b
authored
Apr 30, 2019
by
Dominik Hebeler
Browse files
The workers won't fail anymore
parent
7928242b
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
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'
=>
'sql
ite
'
,
'database'
=>
'
my
sql'
,
'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
_0
2_22_122047
_create_failed_jobs_table.php
→
database/migrations/201
9
_0
4_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