pull/101/head
aliqasemi 4 years ago
parent 22633fe61c
commit c9425f01b2

@ -28,6 +28,7 @@
"wm/service": "dev-master", "wm/service": "dev-master",
"wm/store": "dev-master", "wm/store": "dev-master",
"wm/notification": "dev-master", "wm/notification": "dev-master",
"wm/roll-call": "dev-Init",
"zircote/swagger-php": "^3.0" "zircote/swagger-php": "^3.0"
}, },
"provide": { "provide": {
@ -79,47 +80,58 @@
"@php artisan key:generate --ansi" "@php artisan key:generate --ansi"
] ]
}, },
"repositories": [ "repositories": [
{ {
"type": "vcs", "type": "path",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/crm.git" "url": "./modules/wm-crm"
}, },
{ {
"type": "vcs", "type": "path",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/common.git" "url": "./modules/wm-common"
}, },
{ {
"type": "vcs", "type": "path",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/core.git" "url": "./modules/wm-core"
}, },
{ {
"type": "vcs", "type": "path",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/blog.git" "url": "./modules/wm-blog"
}, },
{ {
"type": "vcs", "type": "path",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/portfolio.git" "url": "./modules/wm-portfolio"
}, },
{ {
"type": "vcs", "type": "path",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/product.git" "url": "./modules/wm-product"
}, },
{ {
"type": "vcs", "type": "path",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/service.git" "url": "./modules/wm-service"
}, },
{ {
"type": "vcs", "type": "path",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/store.git" "url": "./modules/wm-store"
}, },
{ {
"type": "vcs", "type": "path",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/notification.git" "url": "./modules/wm-admin"
}, },
{ {
"type": "vcs", "type": "path",
"url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/admin.git" "url": "./modules/wm-web-builder"
},
{
"type": "path",
"url": "./modules/wm-roll-call"
},
{
"type": "path",
"url": "./modules/wm-notification"
},
{
"type": "path",
"url": "./modules/wm-roll-call"
} }
] ]
} }

11169
composer.lock generated

File diff suppressed because it is too large Load Diff

@ -0,0 +1,36 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateJobsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('jobs', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('queue')->index();
$table->longText('payload');
$table->unsignedTinyInteger('attempts');
$table->unsignedInteger('reserved_at')->nullable();
$table->unsignedInteger('available_at');
$table->unsignedInteger('created_at');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('jobs');
}
}

@ -0,0 +1,36 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateFailedJobsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('failed_jobs', function (Blueprint $table) {
$table->id();
$table->string('uuid')->unique();
$table->text('connection');
$table->text('queue');
$table->longText('payload');
$table->longText('exception');
$table->timestamp('failed_at')->useCurrent();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('failed_jobs');
}
}
Loading…
Cancel
Save