Backport Incident Updates from v3.0.0
This commit is contained in:
@@ -13,6 +13,7 @@ use CachetHQ\Cachet\Models\Component;
|
||||
use CachetHQ\Cachet\Models\ComponentGroup;
|
||||
use CachetHQ\Cachet\Models\Incident;
|
||||
use CachetHQ\Cachet\Models\IncidentTemplate;
|
||||
use CachetHQ\Cachet\Models\IncidentUpdate;
|
||||
use CachetHQ\Cachet\Models\Metric;
|
||||
use CachetHQ\Cachet\Models\MetricPoint;
|
||||
use CachetHQ\Cachet\Models\Setting;
|
||||
@@ -58,6 +59,15 @@ $factory->define(IncidentTemplate::class, function ($faker) {
|
||||
];
|
||||
});
|
||||
|
||||
$factory->define(IncidentUpdate::class, function ($faker) {
|
||||
return [
|
||||
'incident_id' => factory(Incident::class)->create()->id,
|
||||
'message' => $faker->paragraph(),
|
||||
'status' => random_int(1, 4),
|
||||
'user_id' => factory(User::class)->create()->id,
|
||||
];
|
||||
});
|
||||
|
||||
$factory->define(Metric::class, function ($faker) {
|
||||
return [
|
||||
'name' => $faker->sentence(),
|
||||
|
||||
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Cachet.
|
||||
*
|
||||
* (c) Alt Three Services Limited
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateIncidentUpdatesTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('incident_updates', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->integer('incident_id')->unsigned();
|
||||
$table->integer('status');
|
||||
$table->longText('message');
|
||||
$table->integer('user_id')->unsigned();
|
||||
$table->timestamps();
|
||||
|
||||
$table->index('incident_id');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::drop('incident_updates');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user